for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Encore\Admin\Grid\Selectable;
use Encore\Admin\Grid\Displayers\AbstractDisplayer;
class Radio extends AbstractDisplayer
{
public function display($key = '')
$value = $this->getAttribute($key);
return <<<EOT
<input type="radio" name="item" class="select" value="{$value}"/>
EOT;
}