The class Symfony\Component\EventDispatcher\Event has been deprecated: since Symfony 4.3, use "Symfony\Contracts\EventDispatcher\Event" instead
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the ignore-deprecated annotation
8
class MenuEvent extends /** @scrutinizer ignore-deprecated */ Event
Loading history...
9
{
10
/**
11
* @var string
12
*/
13
private $name;
14
15
/**
16
* @var Menu
17
*/
18
private $menu;
19
20
public function __construct(string $name, Menu $menu)