| 1 | <?php | ||
| 17 | class PostCreateClientEvent extends Event | ||
| 18 | { | ||
| 19 | private $namespace; | ||
| 20 | private $client; | ||
| 21 | |||
| 22 | public function __construct(string $namespace, ClientBuilder $client) | ||
| 27 | |||
| 28 | public function getNamespace(): string | ||
| 32 | |||
| 33 | public function setNamespace(string $namespace) | ||
| 38 | |||
| 39 | public function getClient(): ClientBuilder | ||
| 43 | |||
| 44 | public function setClient(ClientBuilder $client): PostCreateClientEvent | ||
| 49 | } | ||
| 50 |