Passed
Pull Request — master (#5)
by strays
01:46
created
src/Language/Comment/ServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
      */
22 22
     public function register(Container $pimple)
23 23
     {
24
-        $pimple['comment'] = function ($app) {
24
+        $pimple['comment'] = function($app) {
25 25
             return new Client($app);
26 26
         };
27 27
     }
Please login to merge, or discard this patch.
src/Language/SentimentClassify/ServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
      */
22 22
     public function register(Container $pimple)
23 23
     {
24
-        $pimple['sentimentClassify'] = function ($app) {
24
+        $pimple['sentimentClassify'] = function($app) {
25 25
             return new Client($app);
26 26
         };
27 27
     }
Please login to merge, or discard this patch.
src/Language/Keyword/ServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
      */
22 22
     public function register(Container $pimple)
23 23
     {
24
-        $pimple['keyword'] = function ($app) {
24
+        $pimple['keyword'] = function($app) {
25 25
             return new Client($app);
26 26
         };
27 27
     }
Please login to merge, or discard this patch.
src/Language/Depparser/ServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
      */
22 22
     public function register(Container $pimple)
23 23
     {
24
-        $pimple['depParser'] = function ($app) {
24
+        $pimple['depParser'] = function($app) {
25 25
             return new Client($app);
26 26
         };
27 27
     }
Please login to merge, or discard this patch.
src/Kernel/Auth/ServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
      */
22 22
     public function register(Container $pimple)
23 23
     {
24
-        !isset($pimple['access_token']) && $pimple['access_token'] = function ($app) {
24
+        !isset($pimple['access_token']) && $pimple['access_token'] = function($app) {
25 25
             return new Client($app);
26 26
         };
27 27
     }
Please login to merge, or discard this patch.