Skip to content

Commit

Permalink
[Readme] Update readme and composer dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
gdespirito committed Oct 19, 2017
1 parent 6daa3e0 commit 9d67f63
Show file tree
Hide file tree
Showing 4 changed files with 397 additions and 319 deletions.
6 changes: 3 additions & 3 deletions app/Product.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class Product extends Model implements Buyable
*
* @return int|string
*/
public function getBuyableIdentifier()
public function getBuyableIdentifier($options = null)
{
return $this->id;
}
Expand All @@ -23,7 +23,7 @@ public function getBuyableIdentifier()
*
* @return string
*/
public function getBuyableDescription()
public function getBuyableDescription($options = null)
{
return $this->name;
}
Expand All @@ -33,7 +33,7 @@ public function getBuyableDescription()
*
* @return float
*/
public function getBuyablePrice()
public function getBuyablePrice($options = null)
{
return $this->price;
}
Expand Down
Loading

0 comments on commit 9d67f63

Please sign in to comment.