gist/src/Gist/Form/ApiUpdateGistForm.php

22 lines
374 B
PHP
Raw Normal View History

2015-11-07 22:13:08 +01:00
<?php
namespace Gist\Form;
/**
* Class ApiUpdateGistForm
* @author Simon Vieille <simon@deblan.fr>
*/
class ApiUpdateGistForm extends ApiCreateGistForm
{
public function build(array $options = array())
{
parent::build($options);
$this->builder
->remove('title')
->remove('type');
return $this->builder;
}
}