Passed
Push — feature/116-csif-not-working-i... ( 4a0df2 )
by Sebastian
02:26 queued 13s
created
src/Rendering/Term/Punctuation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,10 +22,10 @@
 block discarded – undo
22 22
         $values = new ArrayList();
23 23
         return $values
24 24
             ->setArray(Punctuation::toArray())
25
-            ->map(function (string $punctuation) {
25
+            ->map(function(string $punctuation) {
26 26
                 return CiteProc::getContext()->getLocale()->filter("terms", $punctuation)->single;
27 27
             })
28
-            ->collect(function ($items) {
28
+            ->collect(function($items) {
29 29
                 return array_values($items);
30 30
             });
31 31
     }
Please login to merge, or discard this patch.
src/Rendering/Number.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -165,7 +165,7 @@
 block discarded – undo
165 165
         if (empty($ordinalSuffix)) {
166 166
             $ordinalSuffix = CiteProc::getContext()->getLocale()->filter('terms', 'ordinal')->single;
167 167
         }
168
-        return $num . $ordinalSuffix;
168
+        return $num.$ordinalSuffix;
169 169
     }
170 170
 
171 171
     /**
Please login to merge, or discard this patch.