for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace BEAR\Sunday\Provide\Error;
use BEAR\Sunday\Extension\Error\ErrorInterface;
use BEAR\Sunday\Extension\Error\ThrowableHandlerInterface;
use Ray\Di\AbstractModule;
class ErrorModule extends AbstractModule
{
protected function configure(): void
$this->bind(ErrorInterface::class)->to(VndError::class);
$this->bind(ThrowableHandlerInterface::class)->to(ThrowableHandler::class);
}