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
17
class ServerStartEvent extends /** @scrutinizer ignore-deprecated */ Event
Loading history...
18
{
19
/**
20
* @var SocketInterface
21
*/
22
private $socket;
23
24
/**
25
* ServerStartEvent constructor.
26
*
27
* @param SocketInterface $socket
28
*/
29
4
public function __construct(SocketInterface $socket)