1: <?php
2: namespace Izberg\Resource;
3: use Izberg\Resource;
4:
5: class Product extends Resource
6: {
7: public function reviews($id = null)
8: {
9: if ($id === null && $this->id)
10: $id = $this->id;
11: return parent::$Izberg->get("review", $params = array("product"=>$id));
12: }
13: }
14: