Completed
Push — main ( 4608f6...fdf02e )
by Andreas
24s queued 12s
created
src/HolidayIteratorFactory.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -66,11 +66,11 @@  discard block
 block discarded – undo
66 66
         $dom->load($file);
67 67
         $dom->xinclude();
68 68
 
69
-        if (! @$dom->schemaValidate(__DIR__ . '/../share/holidays.xsd')) {
69
+        if (!@$dom->schemaValidate(__DIR__ . '/../share/holidays.xsd')) {
70 70
             throw new Exception('XML-File does not validate agains schema');
71 71
         }
72 72
         foreach ($dom->documentElement->childNodes as $child) {
73
-            if (! $child instanceof DOMElement) {
73
+            if (!$child instanceof DOMElement) {
74 74
                 continue;
75 75
             }
76 76
             if ($child->nodeName === 'resources') {
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
         $file = __DIR__ . '/../share/%s.xml';
95 95
         $file1 = sprintf($file, $isoCode);
96 96
 
97
-        if (! is_readable($file1)) {
97
+        if (!is_readable($file1)) {
98 98
             throw new UnexpectedValueException(sprintf(
99 99
                 'There is no holiday-file for %s',
100 100
                 $isoCode
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
                 $day = CalendarDayFactory::createCalendarDay(
124 124
                     (int) $child->getAttribute('day'),
125 125
                     (int) $child->getAttribute('month'),
126
-                    ($child->hasAttribute('calendar')?$child->getAttribute('calendar'): 'gregorian')
126
+                    ($child->hasAttribute('calendar') ? $child->getAttribute('calendar') : 'gregorian')
127 127
                 );
128 128
                 if ($child->hasAttribute('year')) {
129 129
                     $day->setYear((int) $child->getAttribute('year'));
@@ -132,16 +132,16 @@  discard block
 block discarded – undo
132 132
                     $child->textContent,
133 133
                     $this->getFree($child),
134 134
                     $day,
135
-                    $child->hasAttribute('forwardto')?$child->getAttribute('forwardto'):'',
136
-                    $child->hasAttribute('forwardwhen')?explode(' ', $child->getAttribute('forwardwhen')):[],
137
-                    $child->hasAttribute('rewindto')?$child->getAttribute('rewindto'):'',
138
-                    $child->hasAttribute('rewindwhen')?explode(' ', $child->getAttribute('rewindwhen')):[],
135
+                    $child->hasAttribute('forwardto') ? $child->getAttribute('forwardto') : '',
136
+                    $child->hasAttribute('forwardwhen') ?explode(' ', $child->getAttribute('forwardwhen')) : [],
137
+                    $child->hasAttribute('rewindto') ? $child->getAttribute('rewindto') : '',
138
+                    $child->hasAttribute('rewindwhen') ?explode(' ', $child->getAttribute('rewindwhen')) : [],
139 139
                 );
140 140
             case 'dateFollowUp':
141 141
                 $day = CalendarDayFactory::createCalendarDay(
142 142
                     (int) $child->getAttribute('day'),
143 143
                     (int) $child->getAttribute('month'),
144
-                    ($child->hasAttribute('calendar')?$child->getAttribute('calendar'): 'gregorian')
144
+                    ($child->hasAttribute('calendar') ? $child->getAttribute('calendar') : 'gregorian')
145 145
                 );
146 146
 
147 147
                 return new DateFollowUp(
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
                     $this->getFree($child),
150 150
                     $day,
151 151
                     $child->getAttribute('followup'),
152
-                    ($child->hasAttribute('replaced')?explode(' ', $child->getAttribute('replaced')):[])
152
+                    ($child->hasAttribute('replaced') ?explode(' ', $child->getAttribute('replaced')) : [])
153 153
                 );
154 154
             case 'relative':
155 155
                 return new Relative(
Please login to merge, or discard this patch.
src/IteratorItem/Date.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -113,8 +113,8 @@
 block discarded – undo
113 113
             'saturday' => IntlCalendar::DOW_SATURDAY,
114 114
         ];
115 115
 
116
-        return array_map(function (string $day) use ($daymap) {
117
-            if (! isset($daymap[$day])) {
116
+        return array_map(function(string $day) use ($daymap) {
117
+            if (!isset($daymap[$day])) {
118 118
                 return null;
119 119
             }
120 120
             return $daymap[$day];
Please login to merge, or discard this patch.
src/CalendarDay.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
         $day = $cal->toDateTime();
124 124
         $day->modify('next ' . $followUpDay);
125 125
         $cal->setTime($day->getTimestamp() * 1000);
126
-        $cal2         = clone $this->calendar;
126
+        $cal2 = clone $this->calendar;
127 127
         $cal2->setTime($dateTime->getTimestamp() * 1000);
128 128
 
129 129
         if (null !== $this->year && $cal->get(IntlCalendar::FIELD_YEAR) !== $cal2->get(IntlCalendar::FIELD_YEAR)) {
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
         $day = $cal->toDateTime();
145 145
         $day->modify('previous ' . $previousDay);
146 146
         $cal->setTime($day->getTimestamp() * 1000);
147
-        $cal2         = clone $this->calendar;
147
+        $cal2 = clone $this->calendar;
148 148
         $cal2->setTime($dateTime->getTimestamp() * 1000);
149 149
 
150 150
         if (null !== $this->year && $cal->get(IntlCalendar::FIELD_YEAR) !== $cal2->get(IntlCalendar::FIELD_YEAR)) {
Please login to merge, or discard this patch.