We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9edf842 commit ad77f5bCopy full SHA for ad77f5b
README.md
@@ -56,7 +56,7 @@ $user->balance; // int(10)
56
$user->withdraw(1);
57
$user->balance; // int(9)
58
59
-$user->forceWithdraw(200);
+$user->forceWithdraw(200, ['description' => 'payment of taxes']);
60
$user->balance; // int(-191)
61
```
62
@@ -100,7 +100,7 @@ class Item extends Model implements Product
100
{
101
return [
102
'title' => $this->title,
103
- 'description' => $this->description,
+ 'description' => 'Purchase of Product #' . $this->id,
104
'price' => $this->getAmountProduct(),
105
];
106
}
0 commit comments