for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Smoren\EventRouter\Loggers;
use Smoren\EventRouter\Interfaces\EventInterface;
use Smoren\EventRouter\Interfaces\LoggerInterface;
/**
* FakeLogger class
*/
class FakeLogger implements LoggerInterface
{
* {@inheritDoc}
public function append(EventInterface $event): void
}
public function getLog(): array
error_log(static::class.'::getLog() always returns empty array');
return [];