update api documentation

This commit is contained in:
Manuel Raynaud
2013-08-16 10:11:49 +02:00
parent 1db41a36ab
commit ba36a5af60
1725 changed files with 924982 additions and 272089 deletions

View File

@@ -22,13 +22,11 @@
/*************************************************************************************/
namespace Thelia\Form;
use Symfony\Component\Validator\Constraints\Length;
use Symfony\Component\Validator\Constraints\NotBlank;
use Symfony\Component\Validator\Constraints\Choice;
class AdminLogin extends BaseForm {
class AdminLogin extends BaseForm
{
protected function buildForm()
{
$this->formBuilder
@@ -40,11 +38,11 @@ class AdminLogin extends BaseForm {
))
->add("password", "password", array(
"constraints" => array(
new NotBlank()
new NotBlank()
)
))
->add("remember_me", "checkbox", array(
'value' => 'yes'
'value' => 'yes'
))
;
}