| Current Path : /home/users/unlimited/www/api.xalonx.com/vendor/bavix/laravel-wallet/tests/Infra/Models/ |
| Current File : /home/users/unlimited/www/api.xalonx.com/vendor/bavix/laravel-wallet/tests/Infra/Models/Manager.php |
<?php
declare(strict_types=1);
namespace Bavix\Wallet\Test\Infra\Models;
use Bavix\Wallet\Interfaces\Wallet;
use Bavix\Wallet\Traits\HasWallet;
use Illuminate\Database\Eloquent\Model;
/**
* @property string $name
* @property string $email
*
* @method int getKey()
*/
final class Manager extends Model implements Wallet
{
use HasWallet;
/**
* @var array<int,string>
*/
protected $fillable = ['name', 'email'];
}