mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-18 01:57:13 +00:00
if a model implements interfaces, include them in the stub
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
<?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 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.
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user