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\Transfer;
use BEAR\Sunday\Extension\Transfer\TransferInterface;
use Ray\Di\AbstractModule;
class HttpResponderModule extends AbstractModule
{
* {@inheritdoc}
protected function configure()
$this->bind(TransferInterface::class)->to(HttpResponder::class);
}