CommandCreatorServiceProvider::register()

void register() Register the service provider. Return Value void

CommandCreatorServiceProvider::provides()

array provides() Get the services provided by the provider. Return Value array

CommandCreatorServiceProvider::package()

void package(string $package, string $namespace = null, string $path = null) Register the package's component namespaces. Parameters string $package string $namespace string $path Return Value void

CommandCreatorServiceProvider::isDeferred()

bool isDeferred() Determine if the provider is deferred. Return Value bool

CommandCreatorServiceProvider::guessPackagePath()

string guessPackagePath() Guess the package path for the provider. Return Value string

CommandCreatorServiceProvider::commands()

void commands(array $commands) Register the package's custom Artisan commands. Parameters array $commands Return Value void

CommandCreatorServiceProvider::boot()

void boot() Bootstrap the application events. Return Value void

CommandCreatorServiceProvider

CommandCreatorServiceProvider class CommandCreatorServiceProvider extends ServiceProvider (View source) Methods void __construct(Application $app) Create a new service provider instance. from ServiceProvider void boot() Bootstrap the application events. from ServiceProvider void register() Register the service provider. void package(string $package, string $namespace = null, string $path = null) Register the package's component namespaces. from ServiceProvider string gues

Command::__construct()

void __construct() Create a new console command instance. Return Value void

Command::warn()

void warn(string $string, null|int|string $verbosity = null) Write a string as warning output. Parameters string $string null|int|string $verbosity Return Value void