Completed
Branch master (77a307)
by Craig
04:52
created
Category
src/LaravelYourlsPlugin.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
             'filter' => $filter,
191 191
             'format' => $format,
192 192
         ];
193
-        if (! empty($limit)) {
193
+        if (!empty($limit)) {
194 194
             $params = array_merge($params, ['limit' => $limit]);
195 195
         }
196 196
 
@@ -250,7 +250,7 @@  discard block
 block discarded – undo
250 250
 
251 251
             $this->lastResponse = $res;
252 252
 
253
-            if (! $res) {
253
+            if (!$res) {
254 254
                 throw new \Exception('Failed to parse result');
255 255
             }
256 256
 
Please login to merge, or discard this patch.
src/ServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
             'laravel-yourls-plugin'
26 26
         );
27 27
 
28
-        $this->app->singleton(LaravelYourlsPlugin::class, function ($app) {
28
+        $this->app->singleton(LaravelYourlsPlugin::class, function($app) {
29 29
             return new LaravelYourlsPlugin($app['config']['laravel-yourls-plugin']);
30 30
         });
31 31
     }
Please login to merge, or discard this patch.