Skip to content

Instantly share code, notes, and snippets.

@justinrainbow
Created December 10, 2010 21:16
Show Gist options
  • Save justinrainbow/736836 to your computer and use it in GitHub Desktop.
Save justinrainbow/736836 to your computer and use it in GitHub Desktop.
<?php
// Application/HelloBundle/Author.php
class Author
{
/**
* @validation:NotBlank()
* @validation:MinLength(3)
*/
private $firstName;
/**
* @validation:NotBlank()
* @validation:MinLength(3)
*/
private $lastName;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment