Flugg\Responder\ResponderServiceProvider::registerAliases PHP Method

registerAliases() protected method

Set aliases for the provided services.
protected registerAliases ( ) : void
return void
    protected function registerAliases()
    {
        $this->app->alias(Responder::class, 'responder');
        $this->app->alias(SuccessResponseBuilder::class, 'responder.success');
        $this->app->alias(ErrorResponseBuilder::class, 'responder.error');
        $this->app->alias(Manager::class, 'responder.manager');
        $this->app->alias(Manager::class, 'responder.serializer');
    }