1 | <?php |
||
13 | class QueryEvent extends GenericEvent |
||
14 | { |
||
15 | const QUERY_PREPARED = 'facile_mongo_db.event.query_prepared'; |
||
16 | const QUERY_EXECUTED = 'facile_mongo_db.event.query_executed'; |
||
17 | |||
18 | /** |
||
19 | * QueryEvent constructor. |
||
20 | * |
||
21 | * @param QueryLog $queryLog |
||
22 | * @param array $arguments |
||
23 | */ |
||
24 | 11 | public function __construct(QueryLog $queryLog, array $arguments = []) |
|
28 | |||
29 | /** |
||
30 | * @return QueryLog |
||
31 | */ |
||
32 | public function getQueryLog(): QueryLog |
||
36 | } |
||
37 |