1
0
Fork 0
forked from deblan/gist
gist/src/Gist/Form/CloneGistForm.php
2016-11-13 00:44:23 +01:00

26 lines
405 B
PHP

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