41 lines
994 B
PHP
41 lines
994 B
PHP
<?php
|
|
|
|
namespace Tests\Facades;
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Support\Collection;
|
|
use Illuminate\Support\Facades\Facade;
|
|
use Tests\Factories\UserFactory as BaseUserFactory;
|
|
|
|
/**
|
|
* @method static User create()
|
|
* @method static Collection createMany(int $amount = 1)
|
|
* @method static BaseUserFactory withTokens(int $amount = 1)
|
|
* @method static BaseUserFactory asAdmin()
|
|
* @method static BaseUserFactory asUser()
|
|
* @method static array createRandomModelData()
|
|
* @method static array createRandomRegistrationModelData()
|
|
*/
|
|
class UserFactory extends Facade
|
|
{
|
|
/**
|
|
* Get the registered name of the component.
|
|
*/
|
|
protected static function getFacadeAccessor(): string
|
|
{
|
|
return BaseUserFactory::class;
|
|
}
|
|
|
|
/**
|
|
* Resolve a new instance for the facade
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public static function refresh()
|
|
{
|
|
static::clearResolvedInstance(static::getFacadeAccessor());
|
|
|
|
return static::getFacadeRoot();
|
|
}
|
|
}
|