Merge pull request #98 from andcl/master

Updated README.md documentation
This commit is contained in:
Patrick
2020-09-02 18:58:13 +02:00
committed by GitHub

View File

@@ -416,6 +416,9 @@ class Product extends Model implements Buyable {
public function getBuyablePrice($options = null) { public function getBuyablePrice($options = null) {
return $this->price; return $this->price;
} }
public function getBuyableWeight($options = null) {
return $this->weight;
}
} }
``` ```