for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace AtDataGrid\Column;
use AtDataGrid\Column\Decorator;
use Zend\Form\Element\Text;
class Literal extends Column
{
public function __construct($name)
parent::__construct($name);
$this->addDecorator(new Decorator\Literal())
->setFormElement(new Text($this->getName()));
}