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
10
class CheckRequest extends /** @scrutinizer ignore-deprecated */ Event
Loading history...
11
{
12
/**
13
* @var string
14
*/
15
protected $format;
16
17
/**
18
* @var string
19
*/
20
protected $content;
21
22
/**
23
* @var string
24
*/
25
protected $responseSchemaLocation;
26
27
/**
28
* @var null|ValidationResult
29
*/
30
protected $validationResult;
31
32
/**
33
* @param string $format
34
* @param string $content
35
* @param string $responseSchemaLocation
36
*/
37
8
public function __construct(string $format, string $content, string $responseSchemaLocation)