Skip to content

Instantly share code, notes, and snippets.

@viniciusalonso
Created December 17, 2016 11:59
Show Gist options
  • Save viniciusalonso/e9586f9bf95bd8ce93d40947a3a69613 to your computer and use it in GitHub Desktop.
Save viniciusalonso/e9586f9bf95bd8ce93d40947a3a69613 to your computer and use it in GitHub Desktop.
<?php
class Item {
private $product;
private $quantity;
public function __construct($product, $quantity) {
$this->product = $product;
$this->quantity = $quantity;
}
public function getProduct() {
return $this->product;
}
public function getQuantity() {
return $this->quantity;
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment