Passed
Push — master ( 2b9668...6875d9 )
by Sebastian
02:20
created
src/ConvertHelper/ByteConverter.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
         $this->bytes = $bytes;
34 34
         
35 35
         // correct negative values
36
-        if($this->bytes < 0) 
36
+        if ($this->bytes < 0) 
37 37
         {
38 38
             $this->bytes = 0;
39 39
         }
@@ -49,19 +49,19 @@  discard block
 block discarded – undo
49 49
     {
50 50
         $sizes = $this->getSizesSorted($base);   
51 51
 
52
-        if($this->bytes >= $sizes[0]->getBytes()) 
52
+        if ($this->bytes >= $sizes[0]->getBytes()) 
53 53
         {
54 54
             $total = count($sizes);
55 55
             
56
-            for($i=0; $i < $total; $i++)
56
+            for ($i = 0; $i < $total; $i++)
57 57
             {
58 58
                 $size = $sizes[$i];
59 59
                 
60
-                if(!isset($sizes[($i+1)])) {
60
+                if (!isset($sizes[($i + 1)])) {
61 61
                     return $size;
62 62
                 }
63 63
                 
64
-                if($this->bytes >= $size->getBytes() && $this->bytes < $sizes[($i+1)]->getBytes()) {
64
+                if ($this->bytes >= $size->getBytes() && $this->bytes < $sizes[($i + 1)]->getBytes()) {
65 65
                     return $size;
66 66
                 }
67 67
             }
@@ -99,11 +99,11 @@  discard block
 block discarded – undo
99 99
     * @see ConvertHelper_StorageSizeEnum::BASE_10
100 100
     * @see ConvertHelper_StorageSizeEnum::BASE_2
101 101
     */
102
-    public function toString(int $precision, int $base=ConvertHelper_StorageSizeEnum::BASE_10) : string
102
+    public function toString(int $precision, int $base = ConvertHelper_StorageSizeEnum::BASE_10) : string
103 103
     {
104 104
         $size = $this->detectSize($base);
105 105
         
106
-        return round($this->bytes / $size->getBytes(), $precision) . ' ' . $size->getSuffix();
106
+        return round($this->bytes / $size->getBytes(), $precision).' '.$size->getSuffix();
107 107
     }
108 108
     
109 109
    /**
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
     * @param int $precision Amount of decimals (rounded up)
127 127
     * @return float
128 128
     */
129
-    public function toKilobytes(int $precision=1) : float
129
+    public function toKilobytes(int $precision = 1) : float
130 130
     {
131 131
         return $this->toNumber($precision, 'kb');
132 132
     }
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
     * @param int $precision Amount of decimals (rounded up)
138 138
     * @return float
139 139
     */
140
-    public function toMegabytes(int $precision=1) : float
140
+    public function toMegabytes(int $precision = 1) : float
141 141
     {
142 142
         return $this->toNumber($precision, 'mb');
143 143
     }
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
     * @param int $precision Amount of decimals (rounded up)
149 149
     * @return float
150 150
     */
151
-    public function toGigabytes(int $precision=1) : float
151
+    public function toGigabytes(int $precision = 1) : float
152 152
     {
153 153
         return $this->toNumber($precision, 'gb');
154 154
     }
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
     * @param int $precision Amount of decimals (rounded up)
160 160
     * @return float
161 161
     */
162
-    public function toTerabytes(int $precision=1) : float
162
+    public function toTerabytes(int $precision = 1) : float
163 163
     {
164 164
         return $this->toNumber($precision, 'tb');
165 165
     }
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
     * @param int $precision Amount of decimals (rounded up)
171 171
     * @return float
172 172
     */
173
-    public function toPetabytes(int $precision=1) : float
173
+    public function toPetabytes(int $precision = 1) : float
174 174
     {
175 175
         return $this->toNumber($precision, 'pb');
176 176
     }
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
      * @param int $precision Amount of decimals (rounded up)
182 182
      * @return float
183 183
      */
184
-    public function toKibibytes(int $precision=1) : float
184
+    public function toKibibytes(int $precision = 1) : float
185 185
     {
186 186
         return $this->toNumber($precision, 'kib');
187 187
     }
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
      * @param int $precision Amount of decimals (rounded up)
193 193
      * @return float
194 194
      */
195
-    public function toMebibytes(int $precision=1) : float
195
+    public function toMebibytes(int $precision = 1) : float
196 196
     {
197 197
         return $this->toNumber($precision, 'mib');
198 198
     }
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
      * @param int $precision Amount of decimals (rounded up)
204 204
      * @return float
205 205
      */
206
-    public function toGibibytes(int $precision=1) : float
206
+    public function toGibibytes(int $precision = 1) : float
207 207
     {
208 208
         return $this->toNumber($precision, 'gib');
209 209
     }
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
      * @param int $precision Amount of decimals (rounded up)
215 215
      * @return float
216 216
      */
217
-    public function toTebibytes(int $precision=1) : float
217
+    public function toTebibytes(int $precision = 1) : float
218 218
     {
219 219
         return $this->toNumber($precision, 'tib');
220 220
     }
@@ -225,7 +225,7 @@  discard block
 block discarded – undo
225 225
      * @param int $precision Amount of decimals (rounded up)
226 226
      * @return float
227 227
      */
228
-    public function toPebibytes(int $precision=1) : float
228
+    public function toPebibytes(int $precision = 1) : float
229 229
     {
230 230
         return $this->toNumber($precision, 'pib');
231 231
     }
Please login to merge, or discard this patch.
src/ConvertHelper/SizeNotation.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
     * @return string
95 95
     * @see ConvertHelper::bytes2readable()
96 96
     */
97
-    public function toString(int $precision=1) : string
97
+    public function toString(int $precision = 1) : string
98 98
     {
99 99
         return ConvertHelper::bytes2readable($this->bytes, $precision, $this->getBase());
100 100
     }
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
     */
106 106
     public function getBase() : int
107 107
     {
108
-        if(!$this->isValid()) {
108
+        if (!$this->isValid()) {
109 109
             return 0; 
110 110
         }
111 111
         
@@ -154,18 +154,18 @@  discard block
 block discarded – undo
154 154
     
155 155
     protected function parseSize() : void
156 156
     {
157
-        if(!$this->detectParts()) {
157
+        if (!$this->detectParts()) {
158 158
             return;
159 159
         }
160 160
         
161 161
         // we detected units in the string: all good.
162
-        if($this->units !== null)
162
+        if ($this->units !== null)
163 163
         {
164 164
             return;
165 165
         }
166 166
         
167 167
         // just a numeric value: we assume this means we're dealing with bytes.
168
-        if(is_numeric($this->number)) 
168
+        if (is_numeric($this->number)) 
169 169
         {
170 170
             $this->units = 'b';
171 171
             return;
@@ -191,12 +191,12 @@  discard block
 block discarded – undo
191 191
         
192 192
         $number = $this->size;
193 193
         
194
-        foreach($units as $unit)
194
+        foreach ($units as $unit)
195 195
         {
196
-            if(stristr($number, $unit))
196
+            if (stristr($number, $unit))
197 197
             {
198 198
                 // there are more than 1 unit defined in the string
199
-                if($this->units !== null)
199
+                if ($this->units !== null)
200 200
                 {
201 201
                     $this->setError(
202 202
                         t(
@@ -252,14 +252,14 @@  discard block
 block discarded – undo
252 252
     {
253 253
         $this->parseSize();
254 254
         
255
-        if(!$this->valid) {
255
+        if (!$this->valid) {
256 256
             return;
257 257
         }
258 258
         
259 259
         $int = intval($this->number);
260 260
         
261 261
         // negative values
262
-        if($int < 0) 
262
+        if ($int < 0) 
263 263
         {
264 264
             $this->setError(
265 265
                 t('Negative values cannot be used as size.'),
Please login to merge, or discard this patch.
src/ConvertHelper/StorageSizeEnum.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
     */
44 44
     protected static function init()
45 45
     {
46
-        if(isset(self::$sizes)) {
46
+        if (isset(self::$sizes)) {
47 47
             return;
48 48
         }
49 49
         
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
         
64 64
         self::addSize('b', 1, 1, t('B'), t('Byte'), t('Bytes'));
65 65
         
66
-        if(class_exists('AppLocalize\Localization')) 
66
+        if (class_exists('AppLocalize\Localization')) 
67 67
         {
68 68
             \AppLocalize\Localization::onLocaleChanged(array(self::class, 'handle_localeChanged'));
69 69
         }
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
     {
109 109
         self::init();
110 110
         
111
-        if(isset(self::$sizes[$name])) {
111
+        if (isset(self::$sizes[$name])) {
112 112
             return self::$sizes[$name];
113 113
         }
114 114
         
@@ -140,9 +140,9 @@  discard block
 block discarded – undo
140 140
         
141 141
         $result = array();
142 142
         
143
-        foreach(self::$sizes as $size)
143
+        foreach (self::$sizes as $size)
144 144
         {
145
-            if($size->getBase() === $base) {
145
+            if ($size->getBase() === $base) {
146 146
                 $result[] = $size;
147 147
             }
148 148
         }
Please login to merge, or discard this patch.
src/ConvertHelper.php 1 patch
Spacing   +90 added lines, -90 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
             $amount = substr_count($line, "\t") - $min;
58 58
             $line = trim($line);
59 59
             if ($amount >= 1) {
60
-                $line = str_repeat("\t", $amount) . $line;
60
+                $line = str_repeat("\t", $amount).$line;
61 61
             }
62 62
 
63 63
             $converted[] = $line;
@@ -129,10 +129,10 @@  discard block
 block discarded – undo
129 129
 
130 130
         // specifically handle zero
131 131
         if ($seconds <= 0) {
132
-            return '0 ' . t('seconds');
132
+            return '0 '.t('seconds');
133 133
         }
134 134
         
135
-        if($seconds < 1) {
135
+        if ($seconds < 1) {
136 136
             return t('less than a second');
137 137
         }
138 138
 
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
         foreach ($units as $def) {
141 141
             $quot = intval($seconds / $def['value']);
142 142
             if ($quot) {
143
-                $item = $quot . ' ';
143
+                $item = $quot.' ';
144 144
                 if (abs($quot) > 1) {
145 145
                     $item .= $def['plural'];
146 146
                 } else {
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
             return $last;
158 158
         }
159 159
 
160
-        return implode(', ', $tokens) . ' ' . t('and') . ' ' . $last;
160
+        return implode(', ', $tokens).' '.t('and').' '.$last;
161 161
     }
162 162
 
163 163
    /**
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
     {
177 177
          $converter = new ConvertHelper_DurationConverter();
178 178
          
179
-         if($datefrom instanceof \DateTime)
179
+         if ($datefrom instanceof \DateTime)
180 180
          {
181 181
              $converter->setDateFrom($datefrom);
182 182
          }
@@ -185,11 +185,11 @@  discard block
 block discarded – undo
185 185
              $converter->setDateFrom(self::timestamp2date($datefrom)); 
186 186
          }
187 187
 
188
-         if($dateto instanceof \DateTime)
188
+         if ($dateto instanceof \DateTime)
189 189
          {
190 190
              $converter->setDateTo($dateto);
191 191
          }
192
-         else if($dateto > 0)
192
+         else if ($dateto > 0)
193 193
          {
194 194
              $converter->setDateTo(self::timestamp2date($dateto));
195 195
          }
@@ -209,9 +209,9 @@  discard block
 block discarded – undo
209 209
         return $geshi->parse_code();
210 210
     }
211 211
     
212
-    public static function highlight_xml($xml, $formatSource=false)
212
+    public static function highlight_xml($xml, $formatSource = false)
213 213
     {
214
-        if($formatSource) 
214
+        if ($formatSource) 
215 215
         {
216 216
             $dom = new \DOMDocument();
217 217
             $dom->loadXML($xml);
@@ -278,34 +278,34 @@  discard block
 block discarded – undo
278 278
             return $text;
279 279
         }
280 280
 
281
-        $text = trim(mb_substr($text, 0, $targetLength)) . $append;
281
+        $text = trim(mb_substr($text, 0, $targetLength)).$append;
282 282
 
283 283
         return $text;
284 284
     }
285 285
 
286
-    public static function var_dump($var, $html=true)
286
+    public static function var_dump($var, $html = true)
287 287
     {
288 288
         $info = parseVariable($var);
289 289
         
290
-        if($html) {
290
+        if ($html) {
291 291
             return $info->toHTML();
292 292
         }
293 293
         
294 294
         return $info->toString();
295 295
     }
296 296
     
297
-    public static function print_r($var, $return=false, $html=true)
297
+    public static function print_r($var, $return = false, $html = true)
298 298
     {
299 299
         $result = self::var_dump($var, $html);
300 300
         
301
-        if($html) {
301
+        if ($html) {
302 302
             $result = 
303 303
             '<pre style="background:#fff;color:#333;padding:16px;border:solid 1px #bbb;border-radius:4px">'.
304 304
                 $result.
305 305
             '</pre>';
306 306
         }
307 307
         
308
-        if($return) {
308
+        if ($return) {
309 309
             return $result;
310 310
         }
311 311
         
@@ -325,7 +325,7 @@  discard block
 block discarded – undo
325 325
 
326 326
     public static function string2bool($string)
327 327
     {
328
-        if($string === '' || $string === null) {
328
+        if ($string === '' || $string === null) {
329 329
             return false;
330 330
         }
331 331
         
@@ -380,10 +380,10 @@  discard block
 block discarded – undo
380 380
     public static function date2listLabel(\DateTime $date, $includeTime = false, $shortMonth = false)
381 381
     {
382 382
         $today = new \DateTime();
383
-        if($date->format('d.m.Y') == $today->format('d.m.Y')) {
383
+        if ($date->format('d.m.Y') == $today->format('d.m.Y')) {
384 384
             $label = t('Today');
385 385
         } else {
386
-            $label = $date->format('d') . '. ' . self::month2string((int)$date->format('m'), $shortMonth) . ' ';
386
+            $label = $date->format('d').'. '.self::month2string((int)$date->format('m'), $shortMonth).' ';
387 387
             if ($date->format('Y') != date('Y')) {
388 388
                 $label .= $date->format('Y');
389 389
             }
@@ -474,28 +474,28 @@  discard block
 block discarded – undo
474 474
         $hexAlphabet = array('0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F');
475 475
         
476 476
         $stack = array();
477
-        foreach(self::$controlChars as $char)
477
+        foreach (self::$controlChars as $char)
478 478
         {
479 479
             $tokens = explode('-', $char);
480 480
             $start = $tokens[0];
481 481
             $end = $tokens[1];
482 482
             $prefix = substr($start, 0, 3);
483 483
             $range = array();
484
-            foreach($hexAlphabet as $number) {
484
+            foreach ($hexAlphabet as $number) {
485 485
                 $range[] = $prefix.$number;
486 486
             }
487 487
             
488 488
             $use = false;
489
-            foreach($range as $number) {
490
-                if($number == $start) {
489
+            foreach ($range as $number) {
490
+                if ($number == $start) {
491 491
                     $use = true;
492 492
                 }
493 493
                 
494
-                if($use) {
494
+                if ($use) {
495 495
                     $stack[] = $number;
496 496
                 }
497 497
                 
498
-                if($number == $end) {
498
+                if ($number == $end) {
499 499
                     break;
500 500
                 }
501 501
             }
@@ -516,7 +516,7 @@  discard block
 block discarded – undo
516 516
         $chars = self::getControlCharactersAsHex();
517 517
         
518 518
         $result = array();
519
-        foreach($chars as $char) {
519
+        foreach ($chars as $char) {
520 520
             $result[] = hex2bin($char);
521 521
         }
522 522
         
@@ -534,14 +534,14 @@  discard block
 block discarded – undo
534 534
         $chars = self::getControlCharactersAsHex();
535 535
         
536 536
         $result = array();
537
-        foreach($chars as $char) {
537
+        foreach ($chars as $char) {
538 538
             $result[] = '\u'.strtolower($char);
539 539
         }
540 540
         
541 541
         return $result;
542 542
     }
543 543
     
544
-    protected static $controlChars =  array(
544
+    protected static $controlChars = array(
545 545
         '0000-0008', // control chars
546 546
         '000E-000F', // control chars
547 547
         '0010-001F', // control chars
@@ -563,19 +563,19 @@  discard block
 block discarded – undo
563 563
      */
564 564
     public static function stripControlCharacters(string $string) : string
565 565
     {
566
-        if(empty($string)) {
566
+        if (empty($string)) {
567 567
             return $string;
568 568
         }
569 569
         
570 570
         // create the regex from the unicode characters list
571
-        if(!isset(self::$controlCharsRegex)) 
571
+        if (!isset(self::$controlCharsRegex)) 
572 572
         {
573 573
             $chars = self::getControlCharactersAsHex();
574 574
 
575 575
             // we use the notation \x{0000} to specify the unicode character key
576 576
             // in the regular expression.
577 577
             $stack = array();
578
-            foreach($chars as $char) {
578
+            foreach ($chars as $char) {
579 579
                 $stack[] = '\x{'.$char.'}';
580 580
             }
581 581
             
@@ -609,7 +609,7 @@  discard block
 block discarded – undo
609 609
             $ordInt = ord($octet);
610 610
             // Convert from int (base 10) to hex (base 16), for PHP \x syntax
611 611
             $ordHex = base_convert($ordInt, 10, 16);
612
-            $output .= '\x' . $ordHex;
612
+            $output .= '\x'.$ordHex;
613 613
         }
614 614
         return $output;
615 615
     }
@@ -641,19 +641,19 @@  discard block
 block discarded – undo
641 641
     
642 642
     protected static function convertScalarForComparison($scalar)
643 643
     {
644
-        if($scalar === '' || is_null($scalar)) {
644
+        if ($scalar === '' || is_null($scalar)) {
645 645
             return null;
646 646
         }
647 647
         
648
-        if(is_bool($scalar)) {
648
+        if (is_bool($scalar)) {
649 649
             return self::bool2string($scalar);
650 650
         }
651 651
         
652
-        if(is_array($scalar)) {
652
+        if (is_array($scalar)) {
653 653
             $scalar = md5(serialize($scalar));
654 654
         }
655 655
         
656
-        if($scalar !== null && !is_scalar($scalar)) {
656
+        if ($scalar !== null && !is_scalar($scalar)) {
657 657
             throw new ConvertHelper_Exception(
658 658
                 'Not a scalar value in comparison',
659 659
                 null,
@@ -702,7 +702,7 @@  discard block
 block discarded – undo
702 702
     public static function bool2string($boolean, bool $yesno = false) : string
703 703
     {
704 704
         // allow 'yes', 'true', 'no', 'false' string notations as well
705
-        if(!is_bool($boolean)) {
705
+        if (!is_bool($boolean)) {
706 706
             $boolean = self::string2bool($boolean);
707 707
         }
708 708
         
@@ -743,15 +743,15 @@  discard block
 block discarded – undo
743 743
     public static function array2attributeString($array)
744 744
     {
745 745
         $tokens = array();
746
-        foreach($array as $attr => $value) {
747
-            if($value == '' || $value == null) {
746
+        foreach ($array as $attr => $value) {
747
+            if ($value == '' || $value == null) {
748 748
                 continue;
749 749
             }
750 750
             
751 751
             $tokens[] = $attr.'="'.$value.'"';
752 752
         }
753 753
         
754
-        if(empty($tokens)) {
754
+        if (empty($tokens)) {
755 755
             return '';
756 756
         }
757 757
         
@@ -766,10 +766,10 @@  discard block
 block discarded – undo
766 766
     * @param string $string
767 767
     * @return string
768 768
     */
769
-    public static function string2attributeJS($string, $quoted=true)
769
+    public static function string2attributeJS($string, $quoted = true)
770 770
     {
771 771
         $converted = addslashes(htmlspecialchars(strip_tags($string), ENT_QUOTES, 'UTF-8'));
772
-        if($quoted) {
772
+        if ($quoted) {
773 773
             $converted = "'".$converted."'";
774 774
         } 
775 775
         
@@ -787,11 +787,11 @@  discard block
 block discarded – undo
787 787
     */
788 788
     public static function isBoolean($value) : bool
789 789
     {
790
-        if(is_bool($value)) {
790
+        if (is_bool($value)) {
791 791
             return true;
792 792
         }
793 793
         
794
-        if(!is_scalar($value)) {
794
+        if (!is_scalar($value)) {
795 795
             return false;
796 796
         }
797 797
         
@@ -807,7 +807,7 @@  discard block
 block discarded – undo
807 807
     public static function array2styleString(array $subject) : string
808 808
     {
809 809
         $tokens = array();
810
-        foreach($subject as $name => $value) {
810
+        foreach ($subject as $name => $value) {
811 811
             $tokens[] = $name.':'.$value;
812 812
         }
813 813
         
@@ -865,7 +865,7 @@  discard block
 block discarded – undo
865 865
     * 
866 866
     * @see JSHelper::buildRegexStatement()
867 867
     */
868
-    public static function regex2js(string $regex, string $statementType=JSHelper::JS_REGEX_OBJECT)
868
+    public static function regex2js(string $regex, string $statementType = JSHelper::JS_REGEX_OBJECT)
869 869
     {
870 870
         return JSHelper::buildRegexStatement($regex, $statementType);
871 871
     }
@@ -882,11 +882,11 @@  discard block
 block discarded – undo
882 882
     * @throws ConvertHelper_Exception
883 883
     * @return string
884 884
     */
885
-    public static function var2json($variable, int $options=0, int $depth=512) : string
885
+    public static function var2json($variable, int $options = 0, int $depth = 512) : string
886 886
     {
887 887
         $result = json_encode($variable, $options, $depth);
888 888
         
889
-        if($result !== false) {
889
+        if ($result !== false) {
890 890
             return $result;
891 891
         }
892 892
         
@@ -911,10 +911,10 @@  discard block
 block discarded – undo
911 911
     public static function stripUTFBom($string)
912 912
     {
913 913
         $boms = FileHelper::getUTFBOMs();
914
-        foreach($boms as $bomChars) {
914
+        foreach ($boms as $bomChars) {
915 915
             $length = mb_strlen($bomChars);
916 916
             $text = mb_substr($string, 0, $length);
917
-            if($text==$bomChars) {
917
+            if ($text == $bomChars) {
918 918
                 return mb_substr($string, $length);
919 919
             }
920 920
         }
@@ -931,7 +931,7 @@  discard block
 block discarded – undo
931 931
     */
932 932
     public static function string2utf8($string)
933 933
     {
934
-        if(!self::isStringASCII($string)) {
934
+        if (!self::isStringASCII($string)) {
935 935
             return \ForceUTF8\Encoding::toUTF8($string);
936 936
         }
937 937
         
@@ -949,11 +949,11 @@  discard block
 block discarded – undo
949 949
     */
950 950
     public static function isStringASCII($string) : bool
951 951
     {
952
-        if($string === '' || $string === NULL) {
952
+        if ($string === '' || $string === NULL) {
953 953
             return true;
954 954
         }
955 955
         
956
-        if(!is_string($string)) {
956
+        if (!is_string($string)) {
957 957
             return false;
958 958
         }
959 959
         
@@ -987,7 +987,7 @@  discard block
 block discarded – undo
987 987
     * @param array $options
988 988
     * @return float
989 989
     */
990
-    public static function matchString($source, $target, $options=array())
990
+    public static function matchString($source, $target, $options = array())
991 991
     {
992 992
         $defaults = array(
993 993
             'maxLevenshtein' => 10,
@@ -997,12 +997,12 @@  discard block
 block discarded – undo
997 997
         $options = array_merge($defaults, $options);
998 998
         
999 999
         // avoid doing this via levenshtein
1000
-        if($source == $target) {
1000
+        if ($source == $target) {
1001 1001
             return 100;
1002 1002
         }
1003 1003
         
1004 1004
         $diff = levenshtein($source, $target);
1005
-        if($diff > $options['maxLevenshtein']) {
1005
+        if ($diff > $options['maxLevenshtein']) {
1006 1006
             return 0;
1007 1007
         }
1008 1008
         
@@ -1086,24 +1086,24 @@  discard block
 block discarded – undo
1086 1086
     * @see ConvertHelper::INTERVAL_HOURS
1087 1087
     * @see ConvertHelper::INTERVAL_DAYS
1088 1088
     */
1089
-    public static function interval2total(\DateInterval $interval, $unit=self::INTERVAL_SECONDS) : int
1089
+    public static function interval2total(\DateInterval $interval, $unit = self::INTERVAL_SECONDS) : int
1090 1090
     {
1091 1091
         $total = (int)$interval->format('%a');
1092 1092
         if ($unit == self::INTERVAL_DAYS) {
1093 1093
             return $total;
1094 1094
         }
1095 1095
         
1096
-        $total = ($total * 24) + ((int)$interval->h );
1096
+        $total = ($total * 24) + ((int)$interval->h);
1097 1097
         if ($unit == self::INTERVAL_HOURS) {
1098 1098
             return $total;
1099 1099
         }
1100 1100
     
1101
-        $total = ($total * 60) + ((int)$interval->i );
1101
+        $total = ($total * 60) + ((int)$interval->i);
1102 1102
         if ($unit == self::INTERVAL_MINUTES) {
1103 1103
             return $total;
1104 1104
         }
1105 1105
 
1106
-        $total = ($total * 60) + ((int)$interval->s );
1106
+        $total = ($total * 60) + ((int)$interval->s);
1107 1107
         if ($unit == self::INTERVAL_SECONDS) {
1108 1108
             return $total;
1109 1109
         }
@@ -1132,13 +1132,13 @@  discard block
 block discarded – undo
1132 1132
     * @param bool $short
1133 1133
     * @return string|NULL
1134 1134
     */
1135
-    public static function date2dayName(\DateTime $date, bool $short=false)
1135
+    public static function date2dayName(\DateTime $date, bool $short = false)
1136 1136
     {
1137 1137
         $day = $date->format('l');
1138 1138
         $invariant = self::getDayNamesInvariant();
1139 1139
         
1140 1140
         $idx = array_search($day, $invariant);
1141
-        if($idx !== false) {
1141
+        if ($idx !== false) {
1142 1142
             $localized = self::getDayNames($short);
1143 1143
             return $localized[$idx];
1144 1144
         }
@@ -1161,10 +1161,10 @@  discard block
 block discarded – undo
1161 1161
     * @param bool $short
1162 1162
     * @return array
1163 1163
     */
1164
-    public static function getDayNames(bool $short=false) : array
1164
+    public static function getDayNames(bool $short = false) : array
1165 1165
     {
1166
-        if($short) {
1167
-            if(!isset(self::$daysShort)) {
1166
+        if ($short) {
1167
+            if (!isset(self::$daysShort)) {
1168 1168
                 self::$daysShort = array(
1169 1169
                     t('Mon'),
1170 1170
                     t('Tue'),
@@ -1179,7 +1179,7 @@  discard block
 block discarded – undo
1179 1179
             return self::$daysShort;
1180 1180
         }
1181 1181
         
1182
-        if(!isset(self::$days)) {
1182
+        if (!isset(self::$days)) {
1183 1183
             self::$days = array(
1184 1184
                 t('Monday'),
1185 1185
                 t('Tuesday'),
@@ -1204,17 +1204,17 @@  discard block
 block discarded – undo
1204 1204
      */
1205 1205
     public static function implodeWithAnd(array $list, $sep = ', ', $conjunction = null)
1206 1206
     {
1207
-        if(empty($list)) {
1207
+        if (empty($list)) {
1208 1208
             return '';
1209 1209
         }
1210 1210
         
1211
-        if(empty($conjunction)) {
1211
+        if (empty($conjunction)) {
1212 1212
             $conjunction = t('and');
1213 1213
         }
1214 1214
         
1215 1215
         $last = array_pop($list);
1216
-        if($list) {
1217
-            return implode($sep, $list) . $conjunction . ' ' . $last;
1216
+        if ($list) {
1217
+            return implode($sep, $list).$conjunction.' '.$last;
1218 1218
         }
1219 1219
         
1220 1220
         return $last;
@@ -1233,7 +1233,7 @@  discard block
 block discarded – undo
1233 1233
     public static function string2array(string $string) : array
1234 1234
     {
1235 1235
         $result = preg_split('//u', $string, null, PREG_SPLIT_NO_EMPTY);
1236
-        if($result !== false) {
1236
+        if ($result !== false) {
1237 1237
             return $result;
1238 1238
         }
1239 1239
         
@@ -1248,12 +1248,12 @@  discard block
 block discarded – undo
1248 1248
     */
1249 1249
     public static function isStringHTML(string $string) : bool
1250 1250
     {
1251
-        if(preg_match('%<[a-z/][\s\S]*>%siU', $string)) {
1251
+        if (preg_match('%<[a-z/][\s\S]*>%siU', $string)) {
1252 1252
             return true;
1253 1253
         }
1254 1254
         
1255 1255
         $decoded = html_entity_decode($string);
1256
-        if($decoded !== $string) {
1256
+        if ($decoded !== $string) {
1257 1257
             return true;
1258 1258
         }
1259 1259
         
@@ -1362,14 +1362,14 @@  discard block
 block discarded – undo
1362 1362
     * @param bool $caseInsensitive
1363 1363
     * @return ConvertHelper_StringMatch[]
1364 1364
     */
1365
-    public static function findString(string $needle, string $haystack, bool $caseInsensitive=false)
1365
+    public static function findString(string $needle, string $haystack, bool $caseInsensitive = false)
1366 1366
     {
1367
-        if($needle === '') {
1367
+        if ($needle === '') {
1368 1368
             return array();
1369 1369
         }
1370 1370
         
1371 1371
         $function = 'mb_strpos';
1372
-        if($caseInsensitive) {
1372
+        if ($caseInsensitive) {
1373 1373
             $function = 'mb_stripos';
1374 1374
         }
1375 1375
         
@@ -1377,7 +1377,7 @@  discard block
 block discarded – undo
1377 1377
         $positions = array();
1378 1378
         $length = mb_strlen($needle);
1379 1379
         
1380
-        while( ($pos = $function($haystack, $needle, $pos)) !== false) 
1380
+        while (($pos = $function($haystack, $needle, $pos)) !== false) 
1381 1381
         {
1382 1382
             $match = mb_substr($haystack, $pos, $length);
1383 1383
             $positions[] = new ConvertHelper_StringMatch($pos, $match);
@@ -1397,7 +1397,7 @@  discard block
 block discarded – undo
1397 1397
     */
1398 1398
     public static function explodeTrim(string $delimiter, string $string) : array
1399 1399
     {
1400
-        if(empty($string) || empty($delimiter)) {
1400
+        if (empty($string) || empty($delimiter)) {
1401 1401
             return array();
1402 1402
         }
1403 1403
         
@@ -1405,8 +1405,8 @@  discard block
 block discarded – undo
1405 1405
         $tokens = array_map('trim', $tokens);
1406 1406
         
1407 1407
         $keep = array();
1408
-        foreach($tokens as $token) {
1409
-            if($token !== '') {
1408
+        foreach ($tokens as $token) {
1409
+            if ($token !== '') {
1410 1410
                 $keep[] = $token;
1411 1411
             }
1412 1412
         }
@@ -1424,11 +1424,11 @@  discard block
 block discarded – undo
1424 1424
     */
1425 1425
     public static function detectEOLCharacter(string $subjectString) : ?ConvertHelper_EOL
1426 1426
     {
1427
-        if(empty($subjectString)) {
1427
+        if (empty($subjectString)) {
1428 1428
             return null;
1429 1429
         }
1430 1430
         
1431
-        if(!isset(self::$eolChars))
1431
+        if (!isset(self::$eolChars))
1432 1432
         {
1433 1433
             $cr = chr((int)hexdec('0d'));
1434 1434
             $lf = chr((int)hexdec('0a'));
@@ -1459,18 +1459,18 @@  discard block
 block discarded – undo
1459 1459
         
1460 1460
         $max = 0;
1461 1461
         $results = array();
1462
-        foreach(self::$eolChars as $def) 
1462
+        foreach (self::$eolChars as $def) 
1463 1463
         {
1464 1464
             $amount = substr_count($subjectString, $def['char']);
1465 1465
             
1466
-            if($amount > $max)
1466
+            if ($amount > $max)
1467 1467
             {
1468 1468
                 $max = $amount;
1469 1469
                 $results[] = $def;
1470 1470
             }
1471 1471
         }
1472 1472
         
1473
-        if(empty($results)) {
1473
+        if (empty($results)) {
1474 1474
             return null;
1475 1475
         }
1476 1476
         
@@ -1490,9 +1490,9 @@  discard block
 block discarded – undo
1490 1490
     */
1491 1491
     public static function arrayRemoveKeys(array &$array, array $keys) : void
1492 1492
     {
1493
-        foreach($keys as $key) 
1493
+        foreach ($keys as $key) 
1494 1494
         {
1495
-            if(array_key_exists($key, $array)) {
1495
+            if (array_key_exists($key, $array)) {
1496 1496
                 unset($array[$key]); 
1497 1497
             }
1498 1498
         }
@@ -1507,17 +1507,17 @@  discard block
 block discarded – undo
1507 1507
     */
1508 1508
     public static function isInteger($value) : bool
1509 1509
     {
1510
-        if(is_int($value)) {
1510
+        if (is_int($value)) {
1511 1511
             return true;
1512 1512
         }
1513 1513
         
1514 1514
         // booleans get converted to numbers, so they would
1515 1515
         // actually match the regex.
1516
-        if(is_bool($value)) {
1516
+        if (is_bool($value)) {
1517 1517
             return false;
1518 1518
         }
1519 1519
         
1520
-        if(is_string($value) && $value !== '') {
1520
+        if (is_string($value) && $value !== '') {
1521 1521
             return preg_match('/\A-?\d+\z/', $value) === 1;
1522 1522
         }
1523 1523
         
Please login to merge, or discard this patch.