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...
18
{
19
private $namespace;
20
private $client;
21
22
public function __construct(string $namespace, ClientBuilder $client)
23
{
24
$this->namespace = $namespace;
25
$this->client = $client;
26
}
27
28
public function getNamespace(): string
29
{
30
return $this->namespace;
31
}
32
33
public function setNamespace(string $namespace)
34
{
35
$this->namespace = $namespace;
36
return $this;
37
}
38
39
public function getClient(): ClientBuilder
40
{
41
return $this->client;
42
}
43
44
public function setClient(ClientBuilder $client): PostCreateClientEvent
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.