Guest User

Untitled

a guest
Oct 11th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. <?php
  2.  
  3. namespace Documents;
  4.  
  5. use Doctrine\ODM\MongoDB\Mapping\Annotations as Mongo;
  6.  
  7. /** @Mongo\Document */
  8. class Item
  9. {
  10. /** @Mongo\Id */
  11. public $id;
  12.  
  13. /** @Mongo\String */
  14. public $name;
  15. }
Add Comment
Please, Sign In to add comment