public function merge(Kalender $K) { $this->eventsList = array_merge($this->eventsList, $K->getEventsList()); $this->holidaysList = array_merge($this->holidaysList, $K->getHolidaysList()); }