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