<?php namespace Emixion\Calendar; class Calendar { /** * $calendars object. */ protected $calendars; /** * $events object. */ protected $events; /** * Constructor. */ public function __construct(\Emixion\Calendar\Interfaces\CalendarsRepositoryInterface $calendars, \Emixion\Calendar\Interfaces\EventsRepositoryInterface $events) { $this->calendars = $calendars; $this->events = $events; } /** * Returns count of calendar. * * @param array $filter * * @return int */ public function count() { return 0; } }