gist/src/Gist/Form/CloneGistForm.php
2015-05-09 01:09:08 +02:00

22 lines
364 B
PHP

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