Passed
Branch master (43d553)
by Sebastian
02:54
created
src/ConvertHelper/QueryParser.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
         // extract parameter names from the query string
38 38
         $result = array();
39 39
         preg_match_all('/&?([^&]+)=.*/sixU', $queryString, $result, PREG_PATTERN_ORDER);
40
-        if(isset($result[1])) {
40
+        if (isset($result[1])) {
41 41
             $paramNames = $result[1];
42 42
         }
43 43
         
@@ -60,11 +60,11 @@  discard block
 block discarded – undo
60 60
         // possible naming conflicts like having both parameters "foo.bar"
61 61
         // and "foo_bar" in the query string: since "foo.bar" would be converted
62 62
         // to "foo_bar", one of the two would be replaced.
63
-        if($fixRequired)
63
+        if ($fixRequired)
64 64
         {
65 65
             $counter = 1;
66 66
             $placeholders = array();
67
-            foreach($paramNames as $paramName)
67
+            foreach ($paramNames as $paramName)
68 68
             {
69 69
                 // create a unique placeholder name
70 70
                 $placeholder = '__PLACEHOLDER'.$counter.'__';
@@ -94,13 +94,13 @@  discard block
 block discarded – undo
94 94
         parse_str($queryString, $parsed);
95 95
         
96 96
         // do any of the parameter names need to be fixed?
97
-        if(!$fixRequired) {
97
+        if (!$fixRequired) {
98 98
             return $parsed;
99 99
         }
100 100
         
101 101
         $keep = array();
102 102
         
103
-        foreach($parsed as $name => $value)
103
+        foreach ($parsed as $name => $value)
104 104
         {
105 105
             $keep[$table[$name]] = $value;
106 106
         }
Please login to merge, or discard this patch.
src/ConvertHelper/WordWrapper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
         return $this->getBoolOption('cut');
64 64
     }
65 65
     
66
-    public function setCuttingEnabled(bool $enabled=true) : ConvertHelper_WordWrapper
66
+    public function setCuttingEnabled(bool $enabled = true) : ConvertHelper_WordWrapper
67 67
     {
68 68
         $this->setOption('cut', $enabled);
69 69
         return $this;
Please login to merge, or discard this patch.
src/ConvertHelper/DateInterval.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
         
58 58
         $interval = $d2->diff($d1);
59 59
         
60
-        if($interval === false) 
60
+        if ($interval === false) 
61 61
         {
62 62
             throw new ConvertHelper_Exception(
63 63
                 'Cannot create interval',
Please login to merge, or discard this patch.
src/ConvertHelper/DurationConverter.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
     
64 64
     public function __construct()
65 65
     {
66
-        if(class_exists('\AppLocalize\Localization')) {
66
+        if (class_exists('\AppLocalize\Localization')) {
67 67
             \AppLocalize\Localization::onLocaleChanged(array($this, 'handle_localeChanged'));
68 68
         }
69 69
     }
@@ -125,11 +125,11 @@  discard block
 block discarded – undo
125 125
         
126 126
         $epoch = 'past';
127 127
         $key = 'singular';
128
-        if($this->dateDiff > 1) {
128
+        if ($this->dateDiff > 1) {
129 129
             $key = 'plural';
130 130
         }
131 131
         
132
-        if($this->future) {
132
+        if ($this->future) {
133 133
             $epoch = 'future'; 
134 134
         }
135 135
         
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
     
143 143
     protected function initTexts()
144 144
     {
145
-        if(isset(self::$texts)) {
145
+        if (isset(self::$texts)) {
146 146
             return;
147 147
         }
148 148
         
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
228 228
         $day = (int)date("j", $this->dateTo);
229 229
         $year = (int)date("Y", $this->dateFrom);
230 230
         
231
-        while(mktime($hour, $min, $sec, $month + ($months_difference), $day, $year) < $this->dateTo)
231
+        while (mktime($hour, $min, $sec, $month + ($months_difference), $day, $year) < $this->dateTo)
232 232
         {
233 233
             $months_difference++;
234 234
         }
@@ -248,7 +248,7 @@  discard block
 block discarded – undo
248 248
     
249 249
     protected function resolveCalculations() : void
250 250
     {
251
-        if(!isset($this->dateFrom))
251
+        if (!isset($this->dateFrom))
252 252
         {
253 253
             throw new ConvertHelper_Exception(
254 254
                 'No date from has been specified.',
@@ -258,7 +258,7 @@  discard block
 block discarded – undo
258 258
         }
259 259
         
260 260
         // no date to set? Assume we want to use today.
261
-        if(!isset($this->dateTo))
261
+        if (!isset($this->dateTo))
262 262
         {
263 263
             $this->dateTo = time();
264 264
         }
@@ -337,7 +337,7 @@  discard block
 block discarded – undo
337 337
         
338 338
         $difference = $this->dateTo - $this->dateFrom;
339 339
         
340
-        if($difference < 0)
340
+        if ($difference < 0)
341 341
         {
342 342
             $difference = $difference * -1;
343 343
             $this->future = true;
Please login to merge, or discard this patch.
src/ConvertHelper/IntervalConverter.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
     
37 37
     public function __construct()
38 38
     {
39
-        if(class_exists('\AppLocalize\Localization')) {
39
+        if (class_exists('\AppLocalize\Localization')) {
40 40
             \AppLocalize\Localization::onLocaleChanged(array($this, 'handle_localeChanged'));
41 41
         }
42 42
     }
@@ -69,17 +69,17 @@  discard block
 block discarded – undo
69 69
         $keep = $this->resolveTokens($interval);
70 70
 
71 71
         $parts = array();
72
-        foreach($keep as $token)
72
+        foreach ($keep as $token)
73 73
         {
74 74
             $value = $interval->getToken($token);
75
-            if($value === 0) {
75
+            if ($value === 0) {
76 76
                 continue;
77 77
             }
78 78
             
79 79
             $parts[] = $this->translateToken($token, $interval);
80 80
         }
81 81
         
82
-        if(count($parts) == 1) {
82
+        if (count($parts) == 1) {
83 83
             return $parts[0];
84 84
         }
85 85
         
@@ -101,10 +101,10 @@  discard block
 block discarded – undo
101 101
         $value = $interval->getToken($token);
102 102
         
103 103
         $suffix = 'p';
104
-        if($value == 1) { $suffix = 's'; }
104
+        if ($value == 1) { $suffix = 's'; }
105 105
         $token .= $suffix;
106 106
         
107
-        if(!isset(self::$texts[$token]))
107
+        if (!isset(self::$texts[$token]))
108 108
         {
109 109
             throw new ConvertHelper_Exception(
110 110
                 'Missing interval translation',
@@ -134,9 +134,9 @@  discard block
 block discarded – undo
134 134
     {
135 135
         $offset = 0;
136 136
         
137
-        foreach($this->tokens as $token) 
137
+        foreach ($this->tokens as $token) 
138 138
         {
139
-            if($interval->getToken($token) > 0) 
139
+            if ($interval->getToken($token) > 0) 
140 140
             {
141 141
                 return array_slice($this->tokens, $offset);
142 142
             }
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
     */
153 153
     protected function initTexts() : void
154 154
     {
155
-        if(isset(self::$texts)) {
155
+        if (isset(self::$texts)) {
156 156
             return;
157 157
         }
158 158
         
Please login to merge, or discard this patch.
src/ZIPHelper.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
     
31 31
     const ERROR_OPENING_ZIP_FILE = 338003;
32 32
     
33
-    const ERROR_CANNOT_SAVE_FILE_TO_DISK =338004;
33
+    const ERROR_CANNOT_SAVE_FILE_TO_DISK = 338004;
34 34
     
35 35
     protected $options = array(
36 36
         'WriteThreshold' => 100
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
     * 
81 81
     * @see FileHelper::ERROR_SOURCE_FILE_DOES_NOT_EXIST
82 82
     */
83
-    public function addFile(string $filePath, ?string $zipPath=null) : bool
83
+    public function addFile(string $filePath, ?string $zipPath = null) : bool
84 84
     {
85 85
         $this->open();
86 86
         
@@ -126,16 +126,16 @@  discard block
 block discarded – undo
126 126
     
127 127
     protected function open()
128 128
     {
129
-        if($this->open) {
129
+        if ($this->open) {
130 130
             return;
131 131
         }
132 132
         
133
-        if(!isset($this->zip)) {
133
+        if (!isset($this->zip)) {
134 134
             $this->zip = new \ZipArchive();
135 135
         }
136 136
         
137 137
         $flag = null;
138
-        if(!file_exists($this->file)) {
138
+        if (!file_exists($this->file)) {
139 139
             $flag = \ZipArchive::CREATE;
140 140
         }
141 141
         
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
     {
176 176
         $this->fileTracker++;
177 177
 
178
-        if($this->options['WriteThreshold'] < 1) {
178
+        if ($this->options['WriteThreshold'] < 1) {
179 179
             return;
180 180
         }
181 181
         
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
     
189 189
     protected function close()
190 190
     {
191
-        if(!$this->open) {
191
+        if (!$this->open) {
192 192
             return;
193 193
         }
194 194
         
@@ -197,8 +197,8 @@  discard block
 block discarded – undo
197 197
             throw new ZIPHelper_Exception(
198 198
                 'Could not save ZIP file to disk',
199 199
                 sprintf(
200
-                    'Tried saving the ZIP file [%1$s], but the write failed. This can have several causes, ' .
201
-                    'including adding files that do not exist on disk, trying to create an empty zip, ' .
200
+                    'Tried saving the ZIP file [%1$s], but the write failed. This can have several causes, '.
201
+                    'including adding files that do not exist on disk, trying to create an empty zip, '.
202 202
                     'or trying to save to a directory that does not exist.',
203 203
                     $this->file
204 204
                 ),
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
     {
214 214
         $this->open();
215 215
         
216
-        if($this->countFiles() < 1) 
216
+        if ($this->countFiles() < 1) 
217 217
         {
218 218
             throw new ZIPHelper_Exception(
219 219
                 'No files in the zip file',
@@ -237,17 +237,17 @@  discard block
 block discarded – undo
237 237
      * @throws ZIPHelper_Exception
238 238
      * @return string The file name that was sent (useful in case none was specified).
239 239
      */
240
-    public function download(?string $fileName=null) : string
240
+    public function download(?string $fileName = null) : string
241 241
     {
242 242
         $this->save();
243 243
         
244
-        if(empty($fileName)) {
244
+        if (empty($fileName)) {
245 245
             $fileName = basename($this->file);
246 246
         }
247 247
         
248 248
         header('Content-type: application/zip');
249
-        header('Content-Disposition: attachment; filename=' . $fileName);
250
-        header('Content-length: ' . filesize($this->file));
249
+        header('Content-Disposition: attachment; filename='.$fileName);
250
+        header('Content-length: '.filesize($this->file));
251 251
         header('Pragma: no-cache');
252 252
         header('Expires: 0');
253 253
         readfile($this->file);
@@ -262,7 +262,7 @@  discard block
 block discarded – undo
262 262
     * @param string|NULL $fileName Override the ZIP's file name for the download
263 263
     * @see ZIPHelper::download()
264 264
     */
265
-    public function downloadAndDelete(?string $fileName=null)
265
+    public function downloadAndDelete(?string $fileName = null)
266 266
     {
267 267
         $this->download($fileName);
268 268
         
@@ -277,9 +277,9 @@  discard block
 block discarded – undo
277 277
     * @param string|NULL $outputFolder If no folder is specified, uses the target file's folder.
278 278
     * @return boolean
279 279
     */
280
-    public function extractAll(?string $outputFolder=null) : bool
280
+    public function extractAll(?string $outputFolder = null) : bool
281 281
     {
282
-        if(empty($outputFolder)) {
282
+        if (empty($outputFolder)) {
283 283
             $outputFolder = dirname($this->file);
284 284
         }
285 285
         
Please login to merge, or discard this patch.
src/SVNHelper/CommandResult.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -41,8 +41,8 @@  discard block
 block discarded – undo
41 41
         $this->commandLine = $commandLine;
42 42
         $this->output = $output;
43 43
         
44
-        foreach($errors as $error) {
45
-            if($error->isError()) {
44
+        foreach ($errors as $error) {
45
+            if ($error->isError()) {
46 46
                 $this->errors[] = $error;
47 47
             } else {
48 48
                 $this->warnings[] = $error;
@@ -62,8 +62,8 @@  discard block
 block discarded – undo
62 62
     
63 63
     public function hasErrorCode($code)
64 64
     {
65
-        foreach($this->errors as $error) {
66
-            if($error->getCode() == $code) {
65
+        foreach ($this->errors as $error) {
66
+            if ($error->getCode() == $code) {
67 67
                 return true;
68 68
             }
69 69
         }
@@ -92,11 +92,11 @@  discard block
 block discarded – undo
92 92
     * @param bool $asString
93 93
     * @return string|string[]
94 94
     */
95
-    public function getErrorMessages(bool $asString=false)
95
+    public function getErrorMessages(bool $asString = false)
96 96
     {
97
-        if($asString) {
97
+        if ($asString) {
98 98
             $lines = array();
99
-            foreach($this->errors as $error) {
99
+            foreach ($this->errors as $error) {
100 100
                 $lines[] = (string)$error;
101 101
             }
102 102
             
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
         }
105 105
         
106 106
         $messages = array();
107
-        foreach($this->errors as $error) {
107
+        foreach ($this->errors as $error) {
108 108
             $messages[] = (string)$error;
109 109
         }
110 110
         
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
     
124 124
     public function getLastLine()
125 125
     {
126
-        return $this->output[count($this->output)-1];
126
+        return $this->output[count($this->output) - 1];
127 127
     }
128 128
     
129 129
     public function getFirstLine()
@@ -138,8 +138,8 @@  discard block
 block discarded – undo
138 138
     
139 139
     public function isConnectionFailed()
140 140
     {
141
-        foreach($this->errors as $error) {
142
-            if($error->isConnectionFailed()) {
141
+        foreach ($this->errors as $error) {
142
+            if ($error->isConnectionFailed()) {
143 143
                 return true;
144 144
             }
145 145
         }
@@ -149,8 +149,8 @@  discard block
 block discarded – undo
149 149
     
150 150
     public function hasConflicts()
151 151
     {
152
-        foreach($this->errors as $error) {
153
-            if($error->isConflict()) {
152
+        foreach ($this->errors as $error) {
153
+            if ($error->isConflict()) {
154 154
                 return true;
155 155
             }
156 156
         }
@@ -160,8 +160,8 @@  discard block
 block discarded – undo
160 160
     
161 161
     public function hasLocks()
162 162
     {
163
-        foreach($this->errors as $error) {
164
-            if($error->isLock()) {
163
+        foreach ($this->errors as $error) {
164
+            if ($error->isLock()) {
165 165
                 return true;
166 166
             }
167 167
         }
Please login to merge, or discard this patch.
src/XMLHelper.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
      */
109 109
     public function addAttribute($parent, string $name, $value)
110 110
     {
111
-        if(!$parent instanceof \DOMNode) {
111
+        if (!$parent instanceof \DOMNode) {
112 112
             throw new XMLHelper_Exception(
113 113
                 'The specified parent node is not a node instance.',
114 114
                 sprintf('Tried adding attribute [%s].', $name),
@@ -230,7 +230,7 @@  discard block
 block discarded – undo
230 230
 
231 231
         if (!empty($text)) {
232 232
             $fragment = $this->dom->createDocumentFragment();
233
-            if(!@$fragment->appendXML($text)) {
233
+            if (!@$fragment->appendXML($text)) {
234 234
                 throw new XMLHelper_Exception(
235 235
                     'Cannot append XML fragment',
236 236
                     sprintf(
@@ -272,7 +272,7 @@  discard block
 block discarded – undo
272 272
      * @param array $attributes
273 273
      * @return \DOMNode
274 274
      */
275
-    public function createRoot($name, $attributes=array())
275
+    public function createRoot($name, $attributes = array())
276 276
     {
277 277
         $root = $this->dom->appendChild($this->dom->createElement($name));
278 278
         $this->addAttributes($root, $attributes);
@@ -293,8 +293,8 @@  discard block
 block discarded – undo
293 293
         $string = str_replace('&lt;', 'LT_ESCAPE', $string);
294 294
         $string = str_replace('&gt;', 'GT_ESCAPE', $string);
295 295
 
296
-        $string = str_replace('&nbsp;',' ',  $string);
297
-        $string = str_replace('&','&amp;',  $string);
296
+        $string = str_replace('&nbsp;', ' ', $string);
297
+        $string = str_replace('&', '&amp;', $string);
298 298
 
299 299
         return $string;
300 300
     }
@@ -309,8 +309,8 @@  discard block
 block discarded – undo
309 309
      */
310 310
     public static function downloadXML($xml, $filename = 'download.xml')
311 311
     {
312
-        if(!headers_sent() && !self::$simulation) {
313
-            header('Content-Disposition: attachment; filename="' . $filename . '"');
312
+        if (!headers_sent() && !self::$simulation) {
313
+            header('Content-Disposition: attachment; filename="'.$filename.'"');
314 314
         }
315 315
         
316 316
         echo $xml;
@@ -325,11 +325,11 @@  discard block
 block discarded – undo
325 325
      */
326 326
     public static function displayXML($xml)
327 327
     {
328
-        if(!headers_sent() && !self::$simulation) {
328
+        if (!headers_sent() && !self::$simulation) {
329 329
             header('Content-Type:text/xml; charset=utf-8');
330 330
         }
331 331
         
332
-        if(self::$simulation) {
332
+        if (self::$simulation) {
333 333
             $xml = '<pre>'.htmlspecialchars($xml).'</pre>';
334 334
         }
335 335
         
@@ -347,10 +347,10 @@  discard block
 block discarded – undo
347 347
      * @param string[] $customInfo Associative array with name => value pairs for custom tags to add to the output xml
348 348
      * @see buildErrorXML()
349 349
      */
350
-    public static function displayErrorXML($code, $message, $title, $customInfo=array())
350
+    public static function displayErrorXML($code, $message, $title, $customInfo = array())
351 351
     {
352
-        if(!headers_sent() && !self::$simulation) {
353
-            header('HTTP/1.1 400 Bad Request: ' . $title, true, 400);
352
+        if (!headers_sent() && !self::$simulation) {
353
+            header('HTTP/1.1 400 Bad Request: '.$title, true, 400);
354 354
         }
355 355
 
356 356
         self::displayXML(self::buildErrorXML($code, $message, $title, $customInfo));
@@ -358,7 +358,7 @@  discard block
 block discarded – undo
358 358
     
359 359
     protected static $simulation = false;
360 360
     
361
-    public static function setSimulation($simulate=true)
361
+    public static function setSimulation($simulate = true)
362 362
     {
363 363
         self::$simulation = $simulate;
364 364
     }
@@ -406,7 +406,7 @@  discard block
 block discarded – undo
406 406
      * @param string $title
407 407
      * @return string
408 408
      */
409
-    public static function buildErrorXML($code, $message, $title, $customInfo=array())
409
+    public static function buildErrorXML($code, $message, $title, $customInfo = array())
410 410
     {
411 411
         $xml = new \DOMDocument('1.0', 'UTF-8');
412 412
         $xml->formatOutput = true;
@@ -420,7 +420,7 @@  discard block
 block discarded – undo
420 420
         $helper->addTextTag($root, 'title', $title);
421 421
         $helper->addTextTag($root, 'request_uri', $_SERVER['REQUEST_URI']);
422 422
         
423
-        foreach($customInfo as $name => $value) {
423
+        foreach ($customInfo as $name => $value) {
424 424
             $helper->addTextTag($root, $name, $value);
425 425
         }
426 426
 
@@ -465,7 +465,7 @@  discard block
 block discarded – undo
465 465
     */
466 466
     public static function string2xml(string $string) : string
467 467
     {
468
-        if(stristr($string, '<body')) 
468
+        if (stristr($string, '<body')) 
469 469
         {
470 470
             throw new XMLHelper_Exception(
471 471
                 'Cannot convert string with existing body element',
@@ -495,7 +495,7 @@  discard block
 block discarded – undo
495 495
         
496 496
         // capture all elements except the body tag itself
497 497
         $xml = '';
498
-        foreach($root->childNodes as $child) {
498
+        foreach ($root->childNodes as $child) {
499 499
             $xml .= $dom->saveXML($child);
500 500
         }
501 501
         
Please login to merge, or discard this patch.
src/Transliteration.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
      * The converted string will be all lowercase.
61 61
      * @return Transliteration
62 62
      */
63
-    public function setLowercase(bool $lowercase=true) : Transliteration
63
+    public function setLowercase(bool $lowercase = true) : Transliteration
64 64
     {
65 65
         $this->setOption('lowercase', $lowercase);
66 66
 
@@ -97,8 +97,8 @@  discard block
 block discarded – undo
97 97
 
98 98
         $result = implode('', $keep);
99 99
 
100
-        while (strstr($result, $space . $space)) {
101
-            $result = str_replace($space . $space, $space, $result);
100
+        while (strstr($result, $space.$space)) {
101
+            $result = str_replace($space.$space, $space, $result);
102 102
         }
103 103
 
104 104
         $result = trim($result, $space);
Please login to merge, or discard this patch.