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
18
class BatchEvent extends /** @scrutinizer ignore-deprecated */ Event
Loading history...
19
{
20
/**
21
* @var Element
22
*/
23
private $element;
24
25
/**
26
* @var Request
27
*/
28
private $request;
29
30
/**
31
* @var object
32
*/
33
private $object;
34
35
/**
36
* @param Element $element
37
* @param Request $request
38
* @param object $object
39
*/
40
public function __construct(Element $element, Request $request, $object)