Edit file File name : CalendarDragAndDropSourceEvent.php Content :<?php /* * This file is part of the Kimai time-tracking app. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace App\Event; use App\Calendar\DragAndDropSource; use App\Entity\User; use Symfony\Contracts\EventDispatcher\Event; final class CalendarDragAndDropSourceEvent extends Event { /** * @var User */ private $user; /** * @var DragAndDropSource[] */ private $sources = []; /** * @var int */ private $maxEntries = 0; public function __construct(User $user, int $maxEntries) { $this->user = $user; $this->maxEntries = $maxEntries; } public function getUser(): User { return $this->user; } public function getMaxEntries(): int { return $this->maxEntries; } public function addSource(DragAndDropSource $source): CalendarDragAndDropSourceEvent { $this->sources[] = $source; return $this; } public function removeSource(DragAndDropSource $source): bool { $key = array_search($source, $this->sources, true); if (false === $key) { return false; } unset($this->sources[$key]); return true; } /** * @return DragAndDropSource[] */ public function getSources(): array { return array_values($this->sources); } } Save