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