| 1 | <?php |
||
| 13 | class ConnectionEvent extends GenericEvent |
||
| 14 | { |
||
| 15 | const CLIENT_CREATED = 'facile_mongo_db.event.connection_client.created'; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * ConnectionEvent constructor. |
||
| 19 | * |
||
| 20 | * @param string $clientName |
||
| 21 | * @param array $arguments |
||
| 22 | */ |
||
| 23 | 10 | public function __construct(string $clientName, array $arguments = []) |
|
| 27 | |||
| 28 | /** |
||
| 29 | * @return string |
||
| 30 | */ |
||
| 31 | 9 | public function getClientName(): string |
|
| 35 | } |
||
| 36 |