gist/src/Gist/Form/ApiCreateGistForm.php

20 lines
330 B
PHP
Raw Normal View History

2015-07-19 16:45:55 +02:00
<?php
namespace Gist\Form;
/**
2015-11-07 22:13:08 +01:00
* Class ApiCreateGistForm
2015-07-19 16:45:55 +02:00
* @author Simon Vieille <simon@deblan.fr>
*/
class ApiCreateGistForm extends CreateGistForm
{
public function build(array $options = array())
{
parent::build($options);
$this->builder->remove('cipher');
return $this->builder;
}
}