Passed
Push — master ( 6709f4...2a4dca )
by Sebastian
05:00
created
src/Rendering/Text.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
                     );
161 161
                 }
162 162
                 list($from, $to) = $ranges;
163
-                return $from . "–" . $to;
163
+                return $from."–".$to;
164 164
             }
165 165
         }
166 166
         return $page;
@@ -211,8 +211,8 @@  discard block
 block discarded – undo
211 211
         // test case group_ShortOutputOnly.json
212 212
         $value = "";
213 213
         if (in_array($this->form, ["short", "long"])) {
214
-            $attrWithPrefix = $this->form . ucfirst($this->toRenderTypeValue);
215
-            $attrWithSuffix = $this->toRenderTypeValue . "-" . $this->form;
214
+            $attrWithPrefix = $this->form.ucfirst($this->toRenderTypeValue);
215
+            $attrWithSuffix = $this->toRenderTypeValue."-".$this->form;
216 216
             if (isset($data->{$attrWithPrefix}) && !empty($data->{$attrWithPrefix})) {
217 217
                 $value = $data->{$attrWithPrefix};
218 218
             } else {
Please login to merge, or discard this patch.