The class Symfony\Component\EventDispatcher\Event has been deprecated with message: since Symfony 4.3, use "Symfony\Contracts\EventDispatcher\Event" instead
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be
removed from the class and what other constant to use instead.
Loading history...
22
{
23
/**
24
* @var mixed
25
*/
26
protected $data;
27
28
/**
29
* @var TypeMetadataInterface
30
*/
31
protected $type;
32
33
/**
34
* @var ContextInterface
35
*/
36
private $context;
37
38
/**
39
* @param mixed $data
40
* @param TypeMetadataInterface $type
41
* @param ContextInterface $context
42
*/
43
16
public function __construct($data, TypeMetadataInterface $type, ContextInterface $context)
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.