Passed
Push — master ( 16baae...6b22f3 )
by Sebastian
02:40
created
src/XMLHelper/DOMErrors/Error.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
     {
47 47
         $data = @json_decode($serialized, true);
48 48
         
49
-        if(!is_array($data))
49
+        if (!is_array($data))
50 50
         {
51 51
             throw new XMLHelper_Exception(
52 52
                 'Could not unserialize error data',
@@ -72,9 +72,9 @@  discard block
 block discarded – undo
72 72
     
73 73
     private static function checkErrorData(array $data) : void
74 74
     {
75
-        foreach(self::$requiredKeys as $key)
75
+        foreach (self::$requiredKeys as $key)
76 76
         {
77
-            if(!array_key_exists($key, $data))
77
+            if (!array_key_exists($key, $data))
78 78
             {
79 79
                 throw new XMLHelper_Exception(
80 80
                     'Required key missing in error data',
Please login to merge, or discard this patch.
src/XMLHelper/HTMLLoader.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
     */
108 108
     private static function checkFragment(string $fragment) : void
109 109
     {
110
-        if(!stristr($fragment, '<body') && !stristr($fragment, 'doctype'))
110
+        if (!stristr($fragment, '<body') && !stristr($fragment, 'doctype'))
111 111
         {
112 112
             return;
113 113
         }
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
         
208 208
         // capture all elements except the body tag itself
209 209
         $xml = '';
210
-        foreach($nodes as $child) 
210
+        foreach ($nodes as $child) 
211 211
         {
212 212
             $xml .= $this->dom->saveXML($child);
213 213
         }
Please login to merge, or discard this patch.
src/XMLHelper/DOMErrors.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -33,13 +33,13 @@  discard block
 block discarded – undo
33 33
     */
34 34
     public function __construct(array $libxmlErrors)
35 35
     {
36
-        foreach($libxmlErrors as $error)
36
+        foreach ($libxmlErrors as $error)
37 37
         {
38
-            if($error instanceof XMLHelper_DOMErrors_Error)
38
+            if ($error instanceof XMLHelper_DOMErrors_Error)
39 39
             {
40 40
                 $this->errors[] = $error;
41 41
             }
42
-            else if($error instanceof \LibXMLError)
42
+            else if ($error instanceof \LibXMLError)
43 43
             {
44 44
                 $this->errors[] = new XMLHelper_DOMErrors_Error($error);
45 45
             }
@@ -117,9 +117,9 @@  discard block
 block discarded – undo
117 117
     {
118 118
         $result = array();
119 119
         
120
-        foreach($this->errors as $error)
120
+        foreach ($this->errors as $error)
121 121
         {
122
-            if($error->isLevel($level))
122
+            if ($error->isLevel($level))
123 123
             {
124 124
                 $result[] = $error;
125 125
             }
@@ -138,9 +138,9 @@  discard block
 block discarded – undo
138 138
     {
139 139
         $result = array();
140 140
         
141
-        foreach($this->errors as $error)
141
+        foreach ($this->errors as $error)
142 142
         {
143
-            if($error->isCode($code))
143
+            if ($error->isCode($code))
144 144
             {
145 145
                 $result[] = $error;
146 146
             }
@@ -157,9 +157,9 @@  discard block
 block discarded – undo
157 157
     */
158 158
     public function hasErrorsByLevel(int $level) : bool
159 159
     {
160
-        foreach($this->errors as $error)
160
+        foreach ($this->errors as $error)
161 161
         {
162
-            if($error->isLevel($level))
162
+            if ($error->isLevel($level))
163 163
             {
164 164
                 return true;
165 165
             }
@@ -176,9 +176,9 @@  discard block
 block discarded – undo
176 176
     */
177 177
     public function hasErrorsByCode(int $code) : bool
178 178
     {
179
-        foreach($this->errors as $error)
179
+        foreach ($this->errors as $error)
180 180
         {
181
-            if($error->isCode($code))
181
+            if ($error->isCode($code))
182 182
             {
183 183
                 return true;
184 184
             }
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
     {
192 192
         $result = array();
193 193
         
194
-        foreach($this->errors as $error)
194
+        foreach ($this->errors as $error)
195 195
         {
196 196
             $result[] = $error->toArray();
197 197
         }
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
     {
211 211
         $data = array();
212 212
         
213
-        foreach($this->errors as $error)
213
+        foreach ($this->errors as $error)
214 214
         {
215 215
             $data[] = $error->serialize();
216 216
         }
@@ -231,7 +231,7 @@  discard block
 block discarded – undo
231 231
         $parts = explode(self::SERIALIZE_SEPARATOR, $serialized);
232 232
         $list = array();
233 233
         
234
-        foreach($parts as $part)
234
+        foreach ($parts as $part)
235 235
         {
236 236
             $list[] = XMLHelper_DOMErrors_Error::fromSerialized($part);
237 237
         }
Please login to merge, or discard this patch.
src/XMLHelper.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
      */
106 106
     public function addAttribute($parent, string $name, $value)
107 107
     {
108
-        if(!$parent instanceof \DOMNode) {
108
+        if (!$parent instanceof \DOMNode) {
109 109
             throw new XMLHelper_Exception(
110 110
                 'The specified parent node is not a node instance.',
111 111
                 sprintf('Tried adding attribute [%s].', $name),
@@ -227,7 +227,7 @@  discard block
 block discarded – undo
227 227
 
228 228
         if (!empty($text)) {
229 229
             $fragment = $this->dom->createDocumentFragment();
230
-            if(!@$fragment->appendXML($text)) {
230
+            if (!@$fragment->appendXML($text)) {
231 231
                 throw new XMLHelper_Exception(
232 232
                     'Cannot append XML fragment',
233 233
                     sprintf(
@@ -269,7 +269,7 @@  discard block
 block discarded – undo
269 269
      * @param array $attributes
270 270
      * @return \DOMNode
271 271
      */
272
-    public function createRoot($name, $attributes=array())
272
+    public function createRoot($name, $attributes = array())
273 273
     {
274 274
         $root = $this->dom->appendChild($this->dom->createElement($name));
275 275
         $this->addAttributes($root, $attributes);
@@ -290,8 +290,8 @@  discard block
 block discarded – undo
290 290
         $string = str_replace('&lt;', 'LT_ESCAPE', $string);
291 291
         $string = str_replace('&gt;', 'GT_ESCAPE', $string);
292 292
 
293
-        $string = str_replace('&nbsp;',' ',  $string);
294
-        $string = str_replace('&','&amp;',  $string);
293
+        $string = str_replace('&nbsp;', ' ', $string);
294
+        $string = str_replace('&', '&amp;', $string);
295 295
 
296 296
         return $string;
297 297
     }
@@ -306,8 +306,8 @@  discard block
 block discarded – undo
306 306
      */
307 307
     public static function downloadXML($xml, $filename = 'download.xml')
308 308
     {
309
-        if(!headers_sent() && !self::$simulation) {
310
-            header('Content-Disposition: attachment; filename="' . $filename . '"');
309
+        if (!headers_sent() && !self::$simulation) {
310
+            header('Content-Disposition: attachment; filename="'.$filename.'"');
311 311
         }
312 312
         
313 313
         echo $xml;
@@ -322,11 +322,11 @@  discard block
 block discarded – undo
322 322
      */
323 323
     public static function displayXML($xml)
324 324
     {
325
-        if(!headers_sent() && !self::$simulation) {
325
+        if (!headers_sent() && !self::$simulation) {
326 326
             header('Content-Type:text/xml; charset=utf-8');
327 327
         }
328 328
         
329
-        if(self::$simulation) {
329
+        if (self::$simulation) {
330 330
             $xml = '<pre>'.htmlspecialchars($xml).'</pre>';
331 331
         }
332 332
         
@@ -344,10 +344,10 @@  discard block
 block discarded – undo
344 344
      * @param string[] $customInfo Associative array with name => value pairs for custom tags to add to the output xml
345 345
      * @see buildErrorXML()
346 346
      */
347
-    public static function displayErrorXML($code, $message, $title, $customInfo=array())
347
+    public static function displayErrorXML($code, $message, $title, $customInfo = array())
348 348
     {
349
-        if(!headers_sent() && !self::$simulation) {
350
-            header('HTTP/1.1 400 Bad Request: ' . $title, true, 400);
349
+        if (!headers_sent() && !self::$simulation) {
350
+            header('HTTP/1.1 400 Bad Request: '.$title, true, 400);
351 351
         }
352 352
 
353 353
         self::displayXML(self::buildErrorXML($code, $message, $title, $customInfo));
@@ -355,7 +355,7 @@  discard block
 block discarded – undo
355 355
     
356 356
     protected static $simulation = false;
357 357
     
358
-    public static function setSimulation($simulate=true)
358
+    public static function setSimulation($simulate = true)
359 359
     {
360 360
         self::$simulation = $simulate;
361 361
     }
@@ -403,7 +403,7 @@  discard block
 block discarded – undo
403 403
      * @param string $title
404 404
      * @return string
405 405
      */
406
-    public static function buildErrorXML($code, $message, $title, $customInfo=array())
406
+    public static function buildErrorXML($code, $message, $title, $customInfo = array())
407 407
     {
408 408
         $xml = new \DOMDocument('1.0', 'UTF-8');
409 409
         $xml->formatOutput = true;
@@ -417,7 +417,7 @@  discard block
 block discarded – undo
417 417
         $helper->addTextTag($root, 'title', $title);
418 418
         $helper->addTextTag($root, 'request_uri', $_SERVER['REQUEST_URI']);
419 419
         
420
-        foreach($customInfo as $name => $value) {
420
+        foreach ($customInfo as $name => $value) {
421 421
             $helper->addTextTag($root, $name, $value);
422 422
         }
423 423
 
Please login to merge, or discard this patch.
docs/libxml/generate-errorcodes.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
     $lines = explode("\n", $list);
23 23
     $reverseArray = array();
24 24
     
25
-    foreach($lines as $line)
25
+    foreach ($lines as $line)
26 26
     {
27 27
         $parts = explode('=', $line);
28 28
         $name = trim(str_replace('XML_ERR_', '', $parts[0]));
Please login to merge, or discard this patch.