Skip to content

Commit 0e215d4

Browse files
authored
Update README.md
1 parent 72fe968 commit 0e215d4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,14 +72,14 @@ $user->balance; // int(-191)
7272

7373
### Purchases
7474

75-
Add the `CanBePaid` trait and `Customer` interface to your `User` model.
75+
Add the `CanPay` trait and `Customer` interface to your `User` model.
7676
```php
77-
use Bavix\Wallet\Traits\CanBePaid;
77+
use Bavix\Wallet\Traits\CanPay;
7878
use Bavix\Wallet\Interfaces\Customer;
7979

8080
class User extends Model implements Customer
8181
{
82-
use CanBePaid;
82+
use CanPay;
8383
}
8484
```
8585

0 commit comments

Comments
 (0)