<?php namespace Locations\Location; class Location { /** * $districts object. */ protected $districts; /** * $state object. */ protected $state; /** * Constructor. */ public function __construct(\Locations\Location\Interfaces\DistrictsRepositoryInterface $districts, \Locations\Location\Interfaces\StateRepositoryInterface $state) { $this->districts = $districts; $this->state = $state; } /** * Returns count of location. * * @param array $filter * * @return int */ public function count() { return 0; } }