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.
2 parents 1eeae96 + 7e4f88a commit 614dbcdCopy full SHA for 614dbcd
bin/simple-phpunit.php
@@ -66,14 +66,14 @@
66
$phpunitConfigFilename = $phpunitConfigFilename ?: $getPhpUnitConfig('phpunit.xml');
67
68
if ($phpunitConfigFilename) {
69
- $phpunitConfig = new DomDocument();
+ $phpunitConfig = new DOMDocument();
70
$phpunitConfig->load($phpunitConfigFilename);
71
} else {
72
$phpunitConfig = false;
73
}
74
75
if (false !== $phpunitConfig) {
76
- $var = new DOMXpath($phpunitConfig);
+ $var = new DOMXPath($phpunitConfig);
77
foreach ($var->query('//php/server[@name="'.$name.'"]') as $var) {
78
return $var->getAttribute('value');
79
0 commit comments