Passed
Pull Request — master (#1)
by Syed Abidur
03:03
created
src/ServiceProviderForLaravelRecent.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
         // Merges default configuration
21 21
         $this->mergeConfigFrom(__DIR__ . '/config/config.php', 'oauth-tokens-client');
22 22
 
23
-        $this->app->bind('oauth-tokens-client.service', function ($app) {
23
+        $this->app->bind('oauth-tokens-client.service', function($app) {
24 24
             $oauthTokenConfig = $app->make('config')->get('oauth-tokens-client');
25 25
 
26 26
             return new OAuthClient(
Please login to merge, or discard this patch.
src/ServiceProviderForLaravel4.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
      */
35 35
     public function register()
36 36
     {
37
-        $this->app['oauth-tokens-client.service'] = $this->app->share(function ($app) {
37
+        $this->app['oauth-tokens-client.service'] = $this->app->share(function($app) {
38 38
             return new OAuthClient(
39 39
                 new Client,
40 40
                 $app['cache.store'],
Please login to merge, or discard this patch.