Skip to content

Commit ad77f5b

Browse files
committed
update readme
1 parent 9edf842 commit ad77f5b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ $user->balance; // int(10)
5656
$user->withdraw(1);
5757
$user->balance; // int(9)
5858

59-
$user->forceWithdraw(200);
59+
$user->forceWithdraw(200, ['description' => 'payment of taxes']);
6060
$user->balance; // int(-191)
6161
```
6262

@@ -100,7 +100,7 @@ class Item extends Model implements Product
100100
{
101101
return [
102102
'title' => $this->title,
103-
'description' => $this->description,
103+
'description' => 'Purchase of Product #' . $this->id,
104104
'price' => $this->getAmountProduct(),
105105
];
106106
}

0 commit comments

Comments
 (0)