You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
on Laravel 5.4 the Illuminate\Foundation\Application::share() method has been removed. Therefore in the OAuthServiceProvider the register function should look like this:
Hey,
on Laravel 5.4 the Illuminate\Foundation\Application::share() method has been removed. Therefore in the OAuthServiceProvider the register function should look like this:
$this->app->bind('vatsimoauth', function($app){
return new SSO(
$app['config']->get('vatsim-sso.base'),
$app['config']->get('vatsim-sso.key'),
$app['config']->get('vatsim-sso.secret'),
$app['config']->get('vatsim-sso.method'),
$app['config']->get('vatsim-sso.cert')
);
});
The text was updated successfully, but these errors were encountered: