Passed
Push — master ( 6917c6...8092ee )
by Jean-Philippe
16:54 queued 01:52
created
src/CountdownServiceProvider.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
      */
26 26
     public function register()
27 27
     {
28
-        $this->app->bind('jpmurray.countdown', function ($app) {
28
+        $this->app->bind('jpmurray.countdown', function($app) {
29 29
             $carbon = new Carbon;
30 30
             $timezone = $app->config->get('app.timezone');
31 31
 
Please login to merge, or discard this patch.
src/Countdown.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -135,7 +135,7 @@
 block discarded – undo
135 135
             }
136 136
 
137 137
             // Finally
138
-            return $this->carbon->parse((string)$value);
138
+            return $this->carbon->parse((string) $value);
139 139
         } catch (Exception $e) {
140 140
             throw new InvalidDateFormatToCountdown;
141 141
         }
Please login to merge, or discard this patch.