gist/src/Gist/Form/ApiCreateGistForm.php
2017-06-25 18:52:27 +02:00

26 lines
413 B
PHP

<?php
namespace Gist\Form;
/**
* Class ApiCreateGistForm.
*
* @author Simon Vieille <simon@deblan.fr>
*/
class ApiCreateGistForm extends CreateGistForm
{
/**
* {@inheritdoc}
*/
public function build(array $options = array())
{
parent::build($options);
$this->builder
->remove('cipher')
->remove('file');
return $this->builder;
}
}