Skip to content

Instantly share code, notes, and snippets.

@coreymcmahon
Created February 13, 2013 01:54
Show Gist options
  • Save coreymcmahon/4851870 to your computer and use it in GitHub Desktop.
Save coreymcmahon/4851870 to your computer and use it in GitHub Desktop.
<?php
namespace Model;
class Product
{
// etc...
}
class Customer
{
// etc...
}
class Order
{
public function __construct(Customer $customer, array $products)
{
// etc...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment