Samrap\Kickstart\KickstartServiceProvider::register PHP Method

register() public method

Register the service provider.
public register ( ) : void
return void
    public function register()
    {
        // First, we will register the Kickstart command here so that we have
        // everything we need in one swing. That's what kickstart is for.
        $this->commands(['Samrap\\Kickstart\\Commands\\Kickstart']);
        // Next, we need to load some third party providers and aliases. Rather
        // than adding all of those manually in the configuration file, we
        // can do that here and keep those config files a bit cleaner.
        $this->registerPackages();
    }
KickstartServiceProvider