1
0
Fork 0
forked from deblan/gist
gist/src/Gist/Form/CloneGistForm.php

20 lines
323 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');
return $this->builder;
}
}