TinkerServiceProvider::__construct()

void __construct(Application $app) Create a new service provider instance. Parameters Application $app Return Value void

TinkerServiceProvider::when()

array when() Get the events that trigger this service provider to register. Return Value array

TinkerServiceProvider::register()

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

TinkerServiceProvider::provides()

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

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

TinkerServiceProvider::isDeferred()

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

TinkerServiceProvider::guessPackagePath()

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

TinkerServiceProvider::commands()

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

TinkerServiceProvider::boot()

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

TinkerServiceProvider

TinkerServiceProvider class TinkerServiceProvider 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 guessPackagePath() G