Skip to content

Instantly share code, notes, and snippets.

@kriswallsmith
Created February 10, 2011 21:45
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 kriswallsmith/821412 to your computer and use it in GitHub Desktop.
Save kriswallsmith/821412 to your computer and use it in GitHub Desktop.
<?php
/**
* @annot:ns("Doctrine\ODM\MongoDB\Mapping", {
* "validation"="Symfony\Component\Validator\Constraints"
* })
*
* @Document
*/
class Product
{
/** @Id */
private $id;
/** @String @validation:NotBlank */
private $name;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment