Passed
Push — master ( db5c92...f389f3 )
by Sebastian
01:07 queued 15s
created
src/Mailcode/Date/FormatInfo.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -148,8 +148,8 @@  discard block
 block discarded – undo
148 148
 
149 149
             if (!in_array($char, $this->allowedChars)) {
150 150
                 $result->makeError(
151
-                    t('Invalid character in date format:') . ' ' .
152
-                    t('%1$s at position %2$s.', '<code>' . $char . '</code>', $i + 1),
151
+                    t('Invalid character in date format:').' '.
152
+                    t('%1$s at position %2$s.', '<code>'.$char.'</code>', $i + 1),
153 153
                     self::VALIDATION_INVALID_FORMAT_CHARACTER
154 154
                 );
155 155
 
@@ -194,12 +194,12 @@  discard block
 block discarded – undo
194 194
         $groups = array_keys($grouped);
195 195
 
196 196
         foreach ($groups as $group) {
197
-            usort($grouped[$group], function (Mailcode_Date_FormatInfo_Character $a, Mailcode_Date_FormatInfo_Character $b) {
197
+            usort($grouped[$group], function(Mailcode_Date_FormatInfo_Character $a, Mailcode_Date_FormatInfo_Character $b) {
198 198
                 return strnatcasecmp($a->getChar(), $b->getChar());
199 199
             });
200 200
         }
201 201
 
202
-        uksort($grouped, function (string $a, string $b) {
202
+        uksort($grouped, function(string $a, string $b) {
203 203
             return strnatcasecmp($a, $b);
204 204
         });
205 205
 
Please login to merge, or discard this patch.