mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-18 10:07:12 +00:00
* update dependencies * Implement new methods for `Authenticatable` contract * Added Laravel 11 to CI test target * normalize composer.json * Remove obsolete migration method (column type) from test * Update snapshots * Add changelog entry * Update readme --------- Co-authored-by: 武田 憲太郎 <[email protected]> Co-authored-by: barryvdh <[email protected]>
47 lines
1.0 KiB
PHP
47 lines
1.0 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\Interfaces\Models;
|
|
|
|
use Illuminate\Contracts\Auth\Authenticatable;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class User extends Model implements Authenticatable
|
|
{
|
|
public function getAuthIdentifierName()
|
|
{
|
|
// TODO: Implement getAuthIdentifierName() method.
|
|
}
|
|
|
|
public function getAuthIdentifier()
|
|
{
|
|
// TODO: Implement getAuthIdentifier() method.
|
|
}
|
|
|
|
public function getAuthPasswordName()
|
|
{
|
|
// TODO: Implement getAuthPasswordName() method.
|
|
}
|
|
|
|
public function getAuthPassword()
|
|
{
|
|
// TODO: Implement getAuthPassword() method.
|
|
}
|
|
|
|
public function getRememberToken()
|
|
{
|
|
// TODO: Implement getRememberToken() method.
|
|
}
|
|
|
|
public function setRememberToken($value)
|
|
{
|
|
// TODO: Implement setRememberToken() method.
|
|
}
|
|
|
|
public function getRememberTokenName()
|
|
{
|
|
// TODO: Implement getRememberTokenName() method.
|
|
}
|
|
}
|