Completed
Push — master ( d6426f...b73070 )
by steef
09:23 queued 03:48
created
src/Stefanius/SpecialDates/CommonDates/SecondEasterDay.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
      */
52 52
     protected function calculateCNumber()
53 53
     {
54
-        return (int)floor($this->year / 100) + 1;
54
+        return (int) floor($this->year / 100) + 1;
55 55
     }
56 56
 
57 57
     /**
Please login to merge, or discard this patch.
src/Stefanius/SpecialDates/CommonDates/MothersDay.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
         $this->description = 'Moederdag';
12 12
 
13 13
         if ($this->year >= 1908) {
14
-            $timestamp       = strtotime('second sunday', mktime(0, 0, 0, 5, 0, $this->year));
14
+            $timestamp = strtotime('second sunday', mktime(0, 0, 0, 5, 0, $this->year));
15 15
             $date = new \DateTime();
16 16
             $date->setTimestamp($timestamp);
17 17
 
Please login to merge, or discard this patch.
src/Stefanius/SpecialDates/CommonDates/FirstEasterDay.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
      */
52 52
     protected function calculateCNumber()
53 53
     {
54
-        return (int)floor($this->year / 100) + 1;
54
+        return (int) floor($this->year / 100) + 1;
55 55
     }
56 56
 
57 57
     /**
Please login to merge, or discard this patch.
src/Stefanius/SpecialDates/CommonDates/GoodFriday.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
      */
52 52
     protected function calculateCNumber()
53 53
     {
54
-        return (int)floor($this->year / 100) + 1;
54
+        return (int) floor($this->year / 100) + 1;
55 55
     }
56 56
 
57 57
     /**
Please login to merge, or discard this patch.