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