@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | */ |
49 | 49 | private function initUnits() : void |
50 | 50 | { |
51 | - if(isset(self::$units)) |
|
51 | + if (isset(self::$units)) |
|
52 | 52 | { |
53 | 53 | return; |
54 | 54 | } |
@@ -90,12 +90,12 @@ discard block |
||
90 | 90 | public function toString() : string |
91 | 91 | { |
92 | 92 | // specifically handle zero |
93 | - if($this->seconds <= 0) |
|
93 | + if ($this->seconds <= 0) |
|
94 | 94 | { |
95 | - return '0 ' . t('seconds'); |
|
95 | + return '0 '.t('seconds'); |
|
96 | 96 | } |
97 | 97 | |
98 | - if($this->seconds < 1) |
|
98 | + if ($this->seconds < 1) |
|
99 | 99 | { |
100 | 100 | return t('less than a second'); |
101 | 101 | } |
@@ -104,12 +104,12 @@ discard block |
||
104 | 104 | |
105 | 105 | $last = array_pop($tokens); |
106 | 106 | |
107 | - if(empty($tokens)) |
|
107 | + if (empty($tokens)) |
|
108 | 108 | { |
109 | 109 | return $last; |
110 | 110 | } |
111 | 111 | |
112 | - return implode(', ', $tokens) . ' ' . t('and') . ' ' . $last; |
|
112 | + return implode(', ', $tokens).' '.t('and').' '.$last; |
|
113 | 113 | } |
114 | 114 | |
115 | 115 | /** |
@@ -122,18 +122,18 @@ discard block |
||
122 | 122 | $seconds = $this->seconds; |
123 | 123 | $tokens = array(); |
124 | 124 | |
125 | - foreach(self::$units as $def) |
|
125 | + foreach (self::$units as $def) |
|
126 | 126 | { |
127 | 127 | $unitValue = intval($seconds / $def['value']); |
128 | 128 | |
129 | - if($unitValue <= 0) |
|
129 | + if ($unitValue <= 0) |
|
130 | 130 | { |
131 | 131 | continue; |
132 | 132 | } |
133 | 133 | |
134 | - $item = strval($unitValue) . ' '; |
|
134 | + $item = strval($unitValue).' '; |
|
135 | 135 | |
136 | - if(abs($unitValue) > 1) |
|
136 | + if (abs($unitValue) > 1) |
|
137 | 137 | { |
138 | 138 | $item .= $def['plural']; |
139 | 139 | } |
@@ -15,7 +15,7 @@ |
||
15 | 15 | $autoload = $root.'/vendor/autoload.php'; |
16 | 16 | |
17 | 17 | // we need the autoloader to be present |
18 | - if($autoload === false) |
|
18 | + if ($autoload === false) |
|
19 | 19 | { |
20 | 20 | die('<b>ERROR:</b> Autoloader not present. Run composer update first.'); |
21 | 21 | } |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | */ |
122 | 122 | public static function detect(string $subjectString) : ?ConvertHelper_EOL |
123 | 123 | { |
124 | - if(empty($subjectString)) { |
|
124 | + if (empty($subjectString)) { |
|
125 | 125 | return null; |
126 | 126 | } |
127 | 127 | |
@@ -129,18 +129,18 @@ discard block |
||
129 | 129 | $results = array(); |
130 | 130 | $chars = self::getEOLChars(); |
131 | 131 | |
132 | - foreach($chars as $def) |
|
132 | + foreach ($chars as $def) |
|
133 | 133 | { |
134 | 134 | $amount = substr_count($subjectString, $def['char']); |
135 | 135 | |
136 | - if($amount > $max) |
|
136 | + if ($amount > $max) |
|
137 | 137 | { |
138 | 138 | $max = $amount; |
139 | 139 | $results[] = $def; |
140 | 140 | } |
141 | 141 | } |
142 | 142 | |
143 | - if(empty($results)) { |
|
143 | + if (empty($results)) { |
|
144 | 144 | return null; |
145 | 145 | } |
146 | 146 | |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | */ |
157 | 157 | public static function getEOLChars() : array |
158 | 158 | { |
159 | - if(isset(self::$eolChars)) { |
|
159 | + if (isset(self::$eolChars)) { |
|
160 | 160 | return self::$eolChars; |
161 | 161 | } |
162 | 162 |
@@ -13,20 +13,20 @@ discard block |
||
13 | 13 | $string = ''; |
14 | 14 | |
15 | 15 | // Simple function call |
16 | - if(is_string($this->value)) |
|
16 | + if (is_string($this->value)) |
|
17 | 17 | { |
18 | 18 | return $this->value.'()'; |
19 | 19 | } |
20 | 20 | |
21 | - if(is_array($this->value)) { |
|
21 | + if (is_array($this->value)) { |
|
22 | 22 | return $this->renderArray(); |
23 | 23 | } |
24 | 24 | |
25 | - if($this->value instanceof NamedClosure) { |
|
25 | + if ($this->value instanceof NamedClosure) { |
|
26 | 26 | return 'Closure:'.$this->value->getOrigin(); |
27 | 27 | } |
28 | 28 | |
29 | - if($this->value instanceof Closure) { |
|
29 | + if ($this->value instanceof Closure) { |
|
30 | 30 | return 'Closure'; |
31 | 31 | } |
32 | 32 | |
@@ -38,9 +38,9 @@ discard block |
||
38 | 38 | $string = ''; |
39 | 39 | |
40 | 40 | if (is_string($this->value[0])) { |
41 | - $string .= $this->value[0] . '::'; |
|
41 | + $string .= $this->value[0].'::'; |
|
42 | 42 | } else { |
43 | - $string .= get_class($this->value[0]) . '->'; |
|
43 | + $string .= get_class($this->value[0]).'->'; |
|
44 | 44 | } |
45 | 45 | |
46 | 46 | $string .= $this->value[1].'()'; |
@@ -43,9 +43,9 @@ |
||
43 | 43 | |
44 | 44 | $result = array(); |
45 | 45 | $matches = array_unique($matches[2]); |
46 | - foreach($matches as $match) { |
|
46 | + foreach ($matches as $match) { |
|
47 | 47 | $match = trim($match); |
48 | - if(!empty($match) && !in_array($match, $result)) { |
|
48 | + if (!empty($match) && !in_array($match, $result)) { |
|
49 | 49 | $result[] = $match; |
50 | 50 | } |
51 | 51 | } |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | |
35 | 35 | public function __construct() |
36 | 36 | { |
37 | - if(empty(self::$cacheFile)) { |
|
37 | + if (empty(self::$cacheFile)) { |
|
38 | 38 | self::$cacheFile = __DIR__.'/tlds-alpha-by-domain.txt'; |
39 | 39 | } |
40 | 40 | |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | |
59 | 59 | private function load() : void |
60 | 60 | { |
61 | - if(!empty(self::$names)) { |
|
61 | + if (!empty(self::$names)) { |
|
62 | 62 | return; |
63 | 63 | } |
64 | 64 | |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | |
69 | 69 | // Store the names as keys in the array to allow |
70 | 70 | // faster lookups (to avoid using in_array). |
71 | - foreach($names as $name) { |
|
71 | + foreach ($names as $name) { |
|
72 | 72 | self::$names[$name] = ''; |
73 | 73 | } |
74 | 74 | } |
@@ -33,14 +33,14 @@ |
||
33 | 33 | { |
34 | 34 | preg_match_all('%<([A-Z][A-Z0-9]*)\b[^>]*>(.*?)</\1>%si', $html, $result, PREG_PATTERN_ORDER); |
35 | 35 | |
36 | - if(empty($result[1])) { |
|
36 | + if (empty($result[1])) { |
|
37 | 37 | return '<p>'.$text.'</p>'; |
38 | 38 | } |
39 | 39 | |
40 | 40 | $tagName = array_pop($result[1]); |
41 | 41 | $pos = strrpos($html, '</'.$tagName.'>'); |
42 | 42 | |
43 | - if(in_array(strtolower($tagName), self::$newParaTags)) { |
|
43 | + if (in_array(strtolower($tagName), self::$newParaTags)) { |
|
44 | 44 | $replace = '</'.$tagName.'><p>'.$text.'</p>'; |
45 | 45 | } else { |
46 | 46 | $replace = $text.'</'.$tagName.'>'; |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | |
69 | 69 | $interval = $d2->diff($d1); |
70 | 70 | |
71 | - if(!$interval instanceof DateInterval) |
|
71 | + if (!$interval instanceof DateInterval) |
|
72 | 72 | { |
73 | 73 | throw new ConvertHelper_Exception( |
74 | 74 | 'Cannot create interval', |
@@ -187,24 +187,24 @@ discard block |
||
187 | 187 | * @see ConvertHelper::INTERVAL_HOURS |
188 | 188 | * @see ConvertHelper::INTERVAL_DAYS |
189 | 189 | */ |
190 | - public static function toTotal(DateInterval $interval, string $unit=ConvertHelper::INTERVAL_SECONDS) : int |
|
190 | + public static function toTotal(DateInterval $interval, string $unit = ConvertHelper::INTERVAL_SECONDS) : int |
|
191 | 191 | { |
192 | 192 | $total = (int)$interval->format('%a'); |
193 | 193 | if ($unit == ConvertHelper::INTERVAL_DAYS) { |
194 | 194 | return $total; |
195 | 195 | } |
196 | 196 | |
197 | - $total = ($total * 24) + ((int)$interval->h ); |
|
197 | + $total = ($total * 24) + ((int)$interval->h); |
|
198 | 198 | if ($unit == ConvertHelper::INTERVAL_HOURS) { |
199 | 199 | return $total; |
200 | 200 | } |
201 | 201 | |
202 | - $total = ($total * 60) + ((int)$interval->i ); |
|
202 | + $total = ($total * 60) + ((int)$interval->i); |
|
203 | 203 | if ($unit == ConvertHelper::INTERVAL_MINUTES) { |
204 | 204 | return $total; |
205 | 205 | } |
206 | 206 | |
207 | - $total = ($total * 60) + ((int)$interval->s ); |
|
207 | + $total = ($total * 60) + ((int)$interval->s); |
|
208 | 208 | if ($unit == ConvertHelper::INTERVAL_SECONDS) { |
209 | 209 | return $total; |
210 | 210 | } |
@@ -43,13 +43,13 @@ discard block |
||
43 | 43 | * @param bool $short |
44 | 44 | * @return string|NULL |
45 | 45 | */ |
46 | - public static function toDayName(DateTime $date, bool $short=false) : ?string |
|
46 | + public static function toDayName(DateTime $date, bool $short = false) : ?string |
|
47 | 47 | { |
48 | 48 | $day = $date->format('l'); |
49 | 49 | $invariant = self::getDayNamesInvariant(); |
50 | 50 | |
51 | 51 | $idx = array_search($day, $invariant); |
52 | - if($idx !== false) { |
|
52 | + if ($idx !== false) { |
|
53 | 53 | $localized = self::getDayNames($short); |
54 | 54 | return $localized[$idx]; |
55 | 55 | } |
@@ -72,11 +72,11 @@ discard block |
||
72 | 72 | * @param bool $short |
73 | 73 | * @return string[] |
74 | 74 | */ |
75 | - public static function getDayNames(bool $short=false) : array |
|
75 | + public static function getDayNames(bool $short = false) : array |
|
76 | 76 | { |
77 | 77 | self::initDays(); |
78 | 78 | |
79 | - if($short) { |
|
79 | + if ($short) { |
|
80 | 80 | return self::$daysShort; |
81 | 81 | } |
82 | 82 | |
@@ -102,13 +102,13 @@ discard block |
||
102 | 102 | public static function toListLabel(DateTime $date, bool $includeTime = false, bool $shortMonth = false) : string |
103 | 103 | { |
104 | 104 | $today = new DateTime(); |
105 | - if($date->format('d.m.Y') === $today->format('d.m.Y')) |
|
105 | + if ($date->format('d.m.Y') === $today->format('d.m.Y')) |
|
106 | 106 | { |
107 | 107 | $label = t('Today'); |
108 | 108 | } |
109 | 109 | else |
110 | 110 | { |
111 | - $label = $date->format('d') . '. ' . self::month2string((int)$date->format('m'), $shortMonth) . ' '; |
|
111 | + $label = $date->format('d').'. '.self::month2string((int)$date->format('m'), $shortMonth).' '; |
|
112 | 112 | |
113 | 113 | if ($date->format('Y') != date('Y')) |
114 | 114 | { |
@@ -213,7 +213,7 @@ discard block |
||
213 | 213 | |
214 | 214 | private static function initDays() : void |
215 | 215 | { |
216 | - if(!empty(self::$daysShort)) |
|
216 | + if (!empty(self::$daysShort)) |
|
217 | 217 | { |
218 | 218 | return; |
219 | 219 | } |