for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SpeckCatalog\Form;
class Choice extends AbstractForm
{
protected $originalFields = array('choice_id');
public function __construct()
parent::__construct();
$this->add(array(
'name' => 'option_id',
'attributes' => array(
'type' => 'hidden'
),
));
'name' => 'choice_id',
'name' => 'product_id',
'name' => 'override_name',
'type' => 'text'
'options' => array(
'label' => 'Name',
}