<?php namespace Cert\Certification; class Certification { /** * $certifications object. */ protected $certifications; /** * Constructor. */ public function __construct(\Cert\Certification\Interfaces\CertificationsRepositoryInterface $certifications) { $this->certifications = $certifications; } /** * Returns count of certification. * * @param array $filter * * @return int */ public function count() { return 0; } }