for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace LAG\AdminBundle\Event\Events;
use Knp\Menu\ItemInterface;
use Symfony\Contracts\EventDispatcher\Event;
class MenuCreatedEvent extends Event
{
public function __construct(
private ItemInterface $menu
) {
}
public function getMenu(): ItemInterface
return $this->menu;