We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3978220 commit f74a527Copy full SHA for f74a527
src/LaravelOAuthServiceProvider.php
@@ -65,9 +65,15 @@ public function register()
65
}
66
67
/**
68
+ * Get the services provided by the provider.
69
*
- * Add Instagram to Socialite
70
+ * @return array
71
*/
72
+ public function provides()
73
+ {
74
+ return ['laravelsocialite'];
75
+ }
76
+
77
private function bootInstagramSocialite()
78
{
79
$socialite = $this->app->make(\Laravel\Socialite\Contracts\Factory::class);
@@ -79,14 +85,4 @@ function ($app) use ($socialite) {
85
80
86
);
81
87
82
-
83
- /**
84
- * Get the services provided by the provider.
- *
- * @return array
- */
88
- public function provides()
89
- {
90
- return ['laravelsocialite'];
91
- }
92
0 commit comments