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