TinkerCommand::call()

int call(string $command, array $arguments = array()) Call another console command. Parameters string $command array $arguments Return Value int

TinkerCommand::ask()

string ask(string $question, string $default = null) Prompt the user for input. Parameters string $question string $default Return Value string

TinkerCommand::argument()

string|array argument(string $key = null) Get the value of a command argument. Parameters string $key Return Value string|array

TinkerCommand

TinkerCommand class TinkerCommand extends Command (View source) Methods void __construct() Create a new console command instance. from Command int run(InputInterface $input, OutputInterface $output) Run the console command. from Command int call(string $command, array $arguments = array()) Call another console command. from Command int callSilent(string $command, array $arguments = array()) Call another console command silently. from Command string|array argument(string $k

TimeoutException

TimeoutException class TimeoutException extends RuntimeException (View source)

ThrottleRequests::__construct()

void __construct(RateLimiter $limiter) Create a new request throttler. Parameters RateLimiter $limiter Return Value void

ThrottleRequests::handle()

mixed handle(Request $request, Closure $next, int $maxAttempts = 60, float|int $decayMinutes = 1) Handle an incoming request. Parameters Request $request Closure $next int $maxAttempts float|int $decayMinutes Return Value mixed

ThrottlesLogins

ThrottlesLogins trait ThrottlesLogins (View source)

ThrottleRequests

ThrottleRequests class ThrottleRequests (View source) Methods void __construct(RateLimiter $limiter) Create a new request throttler. mixed handle(Request $request, Closure $next, int $maxAttempts = 60, float|int $decayMinutes = 1) Handle an incoming request.

TestMakeCommand::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