Skip to content

Instantly share code, notes, and snippets.

@avalanche123
Created February 23, 2011 00:34
Show Gist options
  • Save avalanche123/839753 to your computer and use it in GitHub Desktop.
Save avalanche123/839753 to your computer and use it in GitHub Desktop.
product.php
<?php
/**
* @mongodb:Document(
* collection="products",
* indexes={
* @mongodb:Index(keys={"sku"=1}, options={"unique"=1}),
* }
* )
*/
class Product
{
private $sku;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment