Example #1
0
 /**
  * @param \Doctrine\DBAL\Schema\Column $column
  * @param mixed $value
  */
 public function generateField($column, $value = null)
 {
     parent::generateField($column);
     $this->setLabel($column->getName());
     $this->htmlAttributes = $this->getHtmlAttributes($column, $value);
     return $this;
 }