1
0
Fork 0
forked from deblan/gist
gist/src/Gist/Form/ApiCreateGistForm.php
2015-07-19 16:45:55 +02:00

20 lines
327 B
PHP

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