| 1 | <?php |
||
| 12 | class NullLogger implements DataCollectorLoggerInterface |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @param LogEvent $event |
||
| 16 | */ |
||
| 17 | public function logQuery(LogEvent $event) |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @return LogEvent |
||
| 24 | */ |
||
| 25 | public function getLoggedEvent(): LogEvent |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @return bool |
||
| 32 | */ |
||
| 33 | public function hasLoggedEvents(): bool |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @param string $connection |
||
| 40 | */ |
||
| 41 | public function addConnection(string $connection) |
||
| 44 | |||
| 45 | /** |
||
| 46 | * @return array|\string[] |
||
| 47 | */ |
||
| 48 | public function getConnections(): array |
||
| 52 | } |
||
| 53 |