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