Acme\Acme\AcmeServiceProvider::register PHP Method

register() public method

public register ( ) : mixed
return mixed return this class itself
    public function register()
    {
        # you can use $this->route to add new route
        require __DIR__ . '/app/routes.php';
        # link a new console command
        $this->console->add(new AcmeConsoleCommand());
        return $this;
    }