Skip to content

Commit

Permalink
Added EventHandler interface as required by Events trait
Browse files Browse the repository at this point in the history
  • Loading branch information
juniwalk committed May 12, 2024
1 parent b56983d commit d60e6e9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Calendar.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
use JuniWalk\Components\Actions\Traits\Links;
use JuniWalk\Utils\Enums\Casing;
use JuniWalk\Utils\Format;
use JuniWalk\Utils\Interfaces\EventHandler;
use JuniWalk\Utils\Traits\Events;
use Nette\Application\UI\Control;
use Nette\Application\UI\Presenter;
Expand All @@ -35,7 +36,7 @@
use Throwable;
use Tracy\Debugger;

class Calendar extends Control implements LinkProvider
class Calendar extends Control implements EventHandler, LinkProvider
{
use Actions, Links, Events;

Expand Down

0 comments on commit d60e6e9

Please sign in to comment.