for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of the BEAR.Package package.
*
* @license http://opensource.org/licenses/MIT MIT
*/
namespace BEAR\Package\Context;
use BEAR\Package\Provide\Representation\HalRenderer;
use BEAR\Resource\RenderInterface;
use Ray\Di\AbstractModule;
use Ray\Di\Scope;
class HalModule extends AbstractModule
{
* {@inheritdoc}
protected function configure()
$this->bind(RenderInterface::class)->to(HalRenderer::class)->in(Scope::SINGLETON);
}