We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ad0a91 commit 5b26497Copy full SHA for 5b26497
phpstan.neon.dist
@@ -13,9 +13,6 @@ parameters:
13
-
14
message: '~^Variable property access on ~'
15
path: src/Step.php
16
- -
17
- message: '~^Dynamic call to static method XMLReader::open\(\)\.~'
18
- path: src/Extractors\Xml.php
19
20
message: '~Variable method call on Wizaplace\\Etl\\Step\.~'
21
path: tests/Tools/AbstractTestCase.php
src/Extractors/Xml.php
@@ -58,9 +58,7 @@ public function extract(): \Generator
58
$value = $this->loop . $value;
59
}
60
61
- $this->reader = new \XMLReader();
62
63
- $this->reader->open($this->input);
+ $this->reader = \XMLReader::open($this->input);
64
65
while ($this->reader->read()) {
66
$this->addElementToPath();
0 commit comments