for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace BEAR\Resource;
use BEAR\Resource\Exception\MethodNotAllowedException;
final class NullOptionsRenderer implements RenderInterface
{
/**
* {@inheritdoc}
*/
public function render(ResourceObject $ro)
throw new MethodNotAllowedException(get_class($ro) . '::options', 405);
}