for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of the BEAR.Sunday package
*
* @license http://opensource.org/licenses/MIT MIT
*/
namespace BEAR\Sunday\Provide\Error;
use BEAR\Sunday\Extension\Error\ErrorInterface;
use Ray\Di\AbstractModule;
class ErrorModule extends AbstractModule
{
* {@inheritdoc}
protected function configure()
$this->bind(ErrorInterface::class)->to(VndError::class);
}