for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
/**
* This file is part of the BEAR.Resource package.
*
* @license http://opensource.org/licenses/MIT MIT
*/
namespace BEAR\Resource;
final class NullRenderer implements RenderInterface
{
public function render(ResourceObject $ro)
unset($ro);
return new NullResourceObject;
}