Skip to content

Instantly share code, notes, and snippets.

@piotrbrzezina
Last active September 14, 2018 11:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save piotrbrzezina/2a14e345d93c4704c65a9370989751a6 to your computer and use it in GitHub Desktop.
Save piotrbrzezina/2a14e345d93c4704c65a9370989751a6 to your computer and use it in GitHub Desktop.
Flashcard step 4 validation
<?php
// ...
class Flashcard
{
/**
* ...
* @Assert\NotBlank()
* @Assert\Length(max="255")
*/
public $question;
/**
* ...
* @Assert\NotBlank()
* @Assert\Length(max="255")
*/
public $answer;
/**
* ...
* @Assert\NotBlank()
*/
public $lesson;
//...
}
<?php
// ...
class Lesson
{
/**
* ...
* @Assert\NotBlank()
* @Assert\Length(max="255")
*/
public $name;
/**
* ...
* @Assert\NotBlank()
*/
public $subject;
// ...
}
<?php
// ...
class Subject
{
/**
* ...
* @Assert\NotBlank()
* @Assert\Length(max="255")
*/
public $name;
/**
* ...
* @Assert\NotBlank(groups={"subjectCreate"})
*/
public $user;
}
<?php
// ...
class User implements UserInterface
{
/**
* ...
* @Assert\NotBlank()
* @Assert\Length(max="255")
*/
public $name;
/**
* ...
* @Assert\NotBlank()
* @Assert\Length(max="255")
*/
public $email;
/**
* ...
* @Assert\NotBlank()
* @Assert\Length(max="255")
*/
public $plainPassword;
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment