ProviderMakeCommand::option()

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

ProviderMakeCommand::question()

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

ProviderMakeCommand::run()

int run(InputInterface $input, OutputInterface $output) Run the console command. Parameters InputInterface $input OutputInterface $output Return Value int

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

ProviderMakeCommand::setLaravel()

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

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

ProviderMakeCommand::warn()

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

ProviderMakeCommand::__construct()

void __construct(Filesystem $files) Create a new controller creator command instance. Parameters Filesystem $files Return Value void

ProviderRepository

ProviderRepository class ProviderRepository (View source) Methods void __construct(Application $app, Filesystem $files, string $manifestPath) Create a new service repository instance. void load(array $providers) Register the application service providers. ServiceProvider createProvider(string $provider) Create a new provider instance. bool shouldRecompile(array $manifest, array $providers) Determine if the manifest should be compiled. array|null loadManifest() Load the

ProviderRepository::createProvider()

ServiceProvider createProvider(string $provider) Create a new provider instance. Parameters string $provider Return Value ServiceProvider