@@ -39,7 +39,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 | |