for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace SixtyEightPublishers\User\Common\Logger;
use Nette\SmartObject;
final class NullLogger implements LoggerInterface
{
use SmartObject;
/**
* {@inheritdoc}
*/
public function error(string $message): void
}
public function notice(string $message): void
public function info(string $message): void