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