Passed
Branch master (6917c6)
by Jean-Philippe
04:11
created
src/CountdownServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      */
25 25
     public function register()
26 26
     {
27
-        $this->app->bind('jpmurray.countdown', function () {
27
+        $this->app->bind('jpmurray.countdown', function() {
28 28
             return new Countdown();
29 29
         });
30 30
 
Please login to merge, or discard this patch.
src/Countdown.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -125,7 +125,7 @@
 block discarded – undo
125 125
     private function computeWeeks()
126 126
     {
127 127
         $this->weeks = intval(bcmod((intval($this->delta) / self::SECONDS_PER_WEEK), self::WEEKS_PER_YEAR));
128
-         return $this;
128
+            return $this;
129 129
     }
130 130
 
131 131
     /**
Please login to merge, or discard this patch.