for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Ray\TestDouble;
use Ray\Di\AbstractModule;
use Ray\Di\Scope;
final class SpyBaseModule extends AbstractModule
{
/**
* {@inheritdoc}
*/
protected function configure()
$this->bind(LoggerInterface::class)->to(Logger::class)->in(Scope::SINGLETON);
}