for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
namespace Facile\MongoDbBundle\Services\Loggers;
/**
* Class NullLogger
*/
class NullLogger implements DataCollectorLoggerInterface
{
* @param array $queryFilter
public function logQuery(array $queryFilter)
return;
}
* @return array
public function getLoggedEvent(): array
return [];
* @return bool
public function hasLoggedEvents(): bool
return false;