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 b31db9a commit 583e85cCopy full SHA for 583e85c
docs/transfer.md
@@ -42,9 +42,9 @@ $last->balance; // int(0)
42
The transfer will be from the first user to the second.
43
44
```php
45
-$first->transfer($second, 5);
+$first->transfer($last, 5);
46
$first->balance; // int(95)
47
-$second->balance; // int(5)
+$last->balance; // int(5)
48
```
49
50
It worked!
@@ -61,9 +61,9 @@ $last->balance; // int(0)
61
62
63
64
-$first->forceTransfer($second, 500);
+$first->forceTransfer($last, 500);
65
$first->balance; // int(-400)
66
-$second->balance; // int(500)
+$last->balance; // int(500)
67
68
69
0 commit comments