Guest User

Untitled

a guest
Jul 23rd, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4. * @mongodb:Document(
  5. * collection="products",
  6. * indexes={
  7. * @mongodb:Index(keys={"sku"=1}, options={"unique"=1}),
  8. * }
  9. * )
  10. */
  11. class Product
  12. {
  13. private $sku;
  14. }
Add Comment
Please, Sign In to add comment