Completed
Push — master ( f1694b...97530d )
by Andreas
05:01 queued 02:23
created
src/JUnitParser.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
     public function getLastLibXmlError()
40 40
     {
41 41
         $error = libxml_get_last_error();
42
-        if (! $error instanceof \LibXMLError) {
42
+        if (!$error instanceof \LibXMLError) {
43 43
             return false;
44 44
         }
45 45
 
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
      */
55 55
     public function parseFile($filename)
56 56
     {
57
-        if (! is_readable($filename)) {
57
+        if (!is_readable($filename)) {
58 58
             throw new \UnexpectedValueException(sprintf(
59 59
                 'File %s is not readable',
60 60
                 basename($filename)
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
         foreach ($items as $item) {
79 79
 
80 80
             $class = $item->getAttribute('class');
81
-            if (! $class) {
81
+            if (!$class) {
82 82
                 $class = explode('::', $item->parentNode->getAttribute('name'))[0];
83 83
             }
84 84
 
Please login to merge, or discard this patch.