@@ -13,7 +13,7 @@ |
||
13 | 13 | $autoload = realpath($root.'/../vendor/autoload.php'); |
14 | 14 | |
15 | 15 | // we need the autoloader to be present |
16 | - if(!file_exists($autoload)) { |
|
16 | + if (!file_exists($autoload)) { |
|
17 | 17 | die('<b>ERROR:</b> Autoloader not present. Run composer update first.'); |
18 | 18 | } |
19 | 19 |
@@ -3,7 +3,7 @@ |
||
3 | 3 | $text = t('This text is in the global scope.'); |
4 | 4 | |
5 | 5 | $text2 = t( |
6 | - 'It is possible to write long texts ' . |
|
7 | - 'using text concatenation in the source ' . |
|
6 | + 'It is possible to write long texts '. |
|
7 | + 'using text concatenation in the source '. |
|
8 | 8 | 'code to keep it readable.' |
9 | 9 | ); |
10 | 10 | \ No newline at end of file |
@@ -49,8 +49,8 @@ |
||
49 | 49 | $examples[] = '1.500'; |
50 | 50 | |
51 | 51 | if ($decimalPositions > 0) { |
52 | - $examples[] = '50,' . substr($decimals, 0, $decimalPositions); |
|
53 | - $examples[] = '1.500,' . substr($decimals, 0, $decimalPositions); |
|
52 | + $examples[] = '50,'.substr($decimals, 0, $decimalPositions); |
|
53 | + $examples[] = '1.500,'.substr($decimals, 0, $decimalPositions); |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | return $examples; |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | |
50 | 50 | public function excludeFolder(string $folder) : Localization_Source_Folder |
51 | 51 | { |
52 | - if(!in_array($folder, $this->excludes['folders'])) { |
|
52 | + if (!in_array($folder, $this->excludes['folders'])) { |
|
53 | 53 | $this->excludes['folders'][] = $folder; |
54 | 54 | } |
55 | 55 | |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | |
59 | 59 | public function excludeFolders(array $folders) : Localization_Source_Folder |
60 | 60 | { |
61 | - foreach($folders as $folder) { |
|
61 | + foreach ($folders as $folder) { |
|
62 | 62 | $this->excludeFolder($folder); |
63 | 63 | } |
64 | 64 |
@@ -39,7 +39,7 @@ |
||
39 | 39 | */ |
40 | 40 | public function getArgument(int $index) |
41 | 41 | { |
42 | - if(isset($this->args[$index])) { |
|
42 | + if (isset($this->args[$index])) { |
|
43 | 43 | return $this->args[$index]; |
44 | 44 | } |
45 | 45 |
@@ -258,8 +258,7 @@ |
||
258 | 258 | if(empty($tokens)) |
259 | 259 | { |
260 | 260 | $content = '/* No strings found. */'; |
261 | - } |
|
262 | - else |
|
261 | + } else |
|
263 | 262 | { |
264 | 263 | $content = |
265 | 264 | '/**'.PHP_EOL. |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | protected function initCache() : void |
67 | 67 | { |
68 | 68 | // ignore it if it does not exist. |
69 | - if(!file_exists($this->cacheKeyFile)) { |
|
69 | + if (!file_exists($this->cacheKeyFile)) { |
|
70 | 70 | return; |
71 | 71 | } |
72 | 72 | |
@@ -78,22 +78,22 @@ discard block |
||
78 | 78 | * @throws Localization_Exception |
79 | 79 | * @throws FileHelper_Exception |
80 | 80 | */ |
81 | - public function writeFiles(bool $force=false) : void |
|
81 | + public function writeFiles(bool $force = false) : void |
|
82 | 82 | { |
83 | 83 | // reset the write states for all files |
84 | 84 | $fileIDs = array_keys($this->written); |
85 | - foreach($fileIDs as $fileID) { |
|
85 | + foreach ($fileIDs as $fileID) { |
|
86 | 86 | $this->written[$fileID] = false; |
87 | 87 | } |
88 | 88 | |
89 | 89 | // no client libraries folder set: ignore. |
90 | - if(empty($this->targetFolder)) { |
|
90 | + if (empty($this->targetFolder)) { |
|
91 | 91 | return; |
92 | 92 | } |
93 | 93 | |
94 | 94 | FileHelper::createFolder($this->targetFolder); |
95 | 95 | |
96 | - if(!is_writable($this->targetFolder)) |
|
96 | + if (!is_writable($this->targetFolder)) |
|
97 | 97 | { |
98 | 98 | throw new Localization_Exception( |
99 | 99 | sprintf( |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | ); |
109 | 109 | } |
110 | 110 | |
111 | - if($this->cacheKey !== Localization::getClientLibrariesCacheKey()) { |
|
111 | + if ($this->cacheKey !== Localization::getClientLibrariesCacheKey()) { |
|
112 | 112 | $force = true; |
113 | 113 | } |
114 | 114 | |
@@ -131,16 +131,16 @@ discard block |
||
131 | 131 | { |
132 | 132 | $files = array(); |
133 | 133 | |
134 | - foreach($this->libraries as $fileName) |
|
134 | + foreach ($this->libraries as $fileName) |
|
135 | 135 | { |
136 | 136 | $files[] = $this->getLibraryFilePath($fileName); |
137 | 137 | } |
138 | 138 | |
139 | 139 | $locales = Localization::getAppLocales(); |
140 | 140 | |
141 | - foreach($locales as $locale) |
|
141 | + foreach ($locales as $locale) |
|
142 | 142 | { |
143 | - if($locale->isNative()) { |
|
143 | + if ($locale->isNative()) { |
|
144 | 144 | continue; |
145 | 145 | } |
146 | 146 | |
@@ -154,9 +154,9 @@ discard block |
||
154 | 154 | { |
155 | 155 | $locales = Localization::getAppLocales(); |
156 | 156 | |
157 | - foreach($locales as $locale) |
|
157 | + foreach ($locales as $locale) |
|
158 | 158 | { |
159 | - if($locale->isNative()) { |
|
159 | + if ($locale->isNative()) { |
|
160 | 160 | continue; |
161 | 161 | } |
162 | 162 | |
@@ -180,7 +180,7 @@ discard block |
||
180 | 180 | { |
181 | 181 | $sourceFolder = realpath(__DIR__.'/../js'); |
182 | 182 | |
183 | - if($sourceFolder === false) |
|
183 | + if ($sourceFolder === false) |
|
184 | 184 | { |
185 | 185 | throw new Localization_Exception( |
186 | 186 | 'Unexpected folder structure encountered.', |
@@ -192,11 +192,11 @@ discard block |
||
192 | 192 | ); |
193 | 193 | } |
194 | 194 | |
195 | - foreach($this->libraries as $fileName) |
|
195 | + foreach ($this->libraries as $fileName) |
|
196 | 196 | { |
197 | 197 | $targetFile = $this->getLibraryFilePath($fileName); |
198 | 198 | |
199 | - if(file_exists($targetFile) && !$this->force) { |
|
199 | + if (file_exists($targetFile) && !$this->force) { |
|
200 | 200 | continue; |
201 | 201 | } |
202 | 202 | |
@@ -241,16 +241,16 @@ discard block |
||
241 | 241 | { |
242 | 242 | $path = $this->getLocaleFilePath($locale); |
243 | 243 | |
244 | - if(file_exists($path) && !$this->force) { |
|
244 | + if (file_exists($path) && !$this->force) { |
|
245 | 245 | return; |
246 | 246 | } |
247 | 247 | |
248 | 248 | $strings = $this->translator->getClientStrings($locale); |
249 | 249 | |
250 | 250 | $tokens = array(); |
251 | - foreach($strings as $hash => $text) |
|
251 | + foreach ($strings as $hash => $text) |
|
252 | 252 | { |
253 | - if(empty($text)) { |
|
253 | + if (empty($text)) { |
|
254 | 254 | continue; |
255 | 255 | } |
256 | 256 | |
@@ -261,7 +261,7 @@ discard block |
||
261 | 261 | ); |
262 | 262 | } |
263 | 263 | |
264 | - if(empty($tokens)) |
|
264 | + if (empty($tokens)) |
|
265 | 265 | { |
266 | 266 | $content = '/* No strings found. */'; |
267 | 267 | } |
@@ -286,7 +286,7 @@ discard block |
||
286 | 286 | */ |
287 | 287 | protected function writeCacheKey() : void |
288 | 288 | { |
289 | - if(file_exists($this->cacheKeyFile) && !$this->force) { |
|
289 | + if (file_exists($this->cacheKeyFile) && !$this->force) { |
|
290 | 290 | return; |
291 | 291 | } |
292 | 292 | |
@@ -311,7 +311,7 @@ discard block |
||
311 | 311 | */ |
312 | 312 | public function areFilesWritten(string $filesID) : bool |
313 | 313 | { |
314 | - if(isset($this->written[$filesID])) { |
|
314 | + if (isset($this->written[$filesID])) { |
|
315 | 315 | return $this->written[$filesID]; |
316 | 316 | } |
317 | 317 |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | */ |
50 | 50 | public function __construct(string $localeName) |
51 | 51 | { |
52 | - if(!self::isLocaleKnown($localeName)) |
|
52 | + if (!self::isLocaleKnown($localeName)) |
|
53 | 53 | { |
54 | 54 | throw new Localization_Exception( |
55 | 55 | 'Invalid locale', |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | */ |
145 | 145 | public function getLabel() : string |
146 | 146 | { |
147 | - switch($this->localeName) |
|
147 | + switch ($this->localeName) |
|
148 | 148 | { |
149 | 149 | case 'de_DE': |
150 | 150 | return t('German'); |
@@ -169,7 +169,7 @@ discard block |
||
169 | 169 | } |
170 | 170 | |
171 | 171 | throw new Localization_Exception( |
172 | - 'Label is missing for the locale ' . $this->localeName, |
|
172 | + 'Label is missing for the locale '.$this->localeName, |
|
173 | 173 | null, |
174 | 174 | self::ERROR_LOCALE_LABEL_MISSING |
175 | 175 | ); |
@@ -181,7 +181,7 @@ discard block |
||
181 | 181 | */ |
182 | 182 | public function getCountry() : Localization_Country |
183 | 183 | { |
184 | - if(!isset($this->country)) { |
|
184 | + if (!isset($this->country)) { |
|
185 | 185 | $this->country = Localization::createCountry($this->countryCode); |
186 | 186 | } |
187 | 187 |
@@ -9,12 +9,12 @@ |
||
9 | 9 | protected function parseDefinition() : void |
10 | 10 | { |
11 | 11 | // some entries are strings, like parenthesises, semicolons and the like. |
12 | - if(is_string($this->definition)) |
|
12 | + if (is_string($this->definition)) |
|
13 | 13 | { |
14 | 14 | $this->token = $this->definition; |
15 | 15 | $this->value = null; |
16 | 16 | |
17 | - if(isset($this->parentToken)) { |
|
17 | + if (isset($this->parentToken)) { |
|
18 | 18 | $this->line = $this->parentToken->getLine(); |
19 | 19 | } |
20 | 20 | } |
@@ -19,8 +19,7 @@ |
||
19 | 19 | if(isset($this->parentToken)) { |
20 | 20 | $this->line = $this->parentToken->getLine(); |
21 | 21 | } |
22 | - } |
|
23 | - else |
|
22 | + } else |
|
24 | 23 | { |
25 | 24 | $this->token = JTokenizer::getTokenName($this->definition[0]); |
26 | 25 | $this->value = $this->definition[1]; |
@@ -17,8 +17,7 @@ |
||
17 | 17 | if(isset($this->parentToken)) { |
18 | 18 | $this->line = $this->parentToken->getLine(); |
19 | 19 | } |
20 | - } |
|
21 | - else |
|
20 | + } else |
|
22 | 21 | { |
23 | 22 | $this->token = token_name($this->definition[0]); |
24 | 23 | $this->value = $this->definition[1]; |
@@ -15,12 +15,12 @@ |
||
15 | 15 | protected function parseDefinition() : void |
16 | 16 | { |
17 | 17 | // some entries are strings, like parentheses, semicolons and the like. |
18 | - if(is_string($this->definition)) |
|
18 | + if (is_string($this->definition)) |
|
19 | 19 | { |
20 | 20 | $this->token = $this->definition; |
21 | 21 | $this->value = null; |
22 | 22 | |
23 | - if(isset($this->parentToken)) { |
|
23 | + if (isset($this->parentToken)) { |
|
24 | 24 | $this->line = $this->parentToken->getLine(); |
25 | 25 | } |
26 | 26 | } |