InteractsWithAuthentication::seeIsAuthenticated()

$this seeIsAuthenticated(string|null $guard = null) Assert that the user is authenticated. Parameters string|null $guard Return Value $this

InteractsWithAuthentication::seeCredentials()

$this seeCredentials(array $credentials, string|null $guard = null) Assert that the given credentials are valid. Parameters array $credentials string|null $guard Return Value $this

InteractsWithAuthentication::dontSeeIsAuthenticated()

$this dontSeeIsAuthenticated(string|null $guard = null) Assert that the user is not authenticated. Parameters string|null $guard Return Value $this

InteractsWithAuthentication::dontSeeCredentials()

$this dontSeeCredentials(array $credentials, string|null $guard = null) Assert that the given credentials are invalid. Parameters array $credentials string|null $guard Return Value $this

InteractsWithAuthentication

InteractsWithAuthentication trait InteractsWithAuthentication (View source) Methods $this seeIsAuthenticated(string|null $guard = null) Assert that the user is authenticated. $this dontSeeIsAuthenticated(string|null $guard = null) Assert that the user is not authenticated. $this seeIsAuthenticatedAs($user, string|null $guard = null) Assert that the user is authenticated as the given user. $this seeCredentials(array $credentials, string|null $guard = null) Assert that the gi

InstallCommand::__construct()

void __construct(MigrationRepositoryInterface $repository) Create a new migration install command instance. Parameters MigrationRepositoryInterface $repository Return Value void

InstallCommand::warn()

void warn(string $string) Write a string as warning output. Parameters string $string Return Value void

InstallCommand::table()

void table(array $headers, Arrayable|array $rows, string $style = 'default') Format input to textual table. Parameters array $headers Arrayable|array $rows string $style Return Value void

InstallCommand::setLaravel()

void setLaravel(Application $laravel) Set the Laravel application instance. Parameters Application $laravel Return Value void

InstallCommand::secret()

string secret(string $question, bool $fallback = true) Prompt the user for input but hide the answer from the console. Parameters string $question bool $fallback Return Value string