1
0
Fork 0
forked from deblan/gist
gist/src/Gist/Form/ApiCreateGistForm.php
2015-11-07 22:13:08 +01:00

20 lines
330 B
PHP

<?php
namespace Gist\Form;
/**
* Class ApiCreateGistForm
* @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;
}
}