REBELinBLUE\Deployer\Providers\UpdateServiceProvider::register PHP Метод

register() публичный Метод

Register the application services.
public register ( )
    public function register()
    {
        $this->app->bind(LatestReleaseInterface::class, LatestRelease::class);
        $this->app->singleton('deployer.update-check', function ($app) {
            $cache = $app['cache.store'];
            return new LatestRelease($cache);
        });
        $this->app->alias('deployer.update-check', LatestReleaseInterface::class);
    }
UpdateServiceProvider