Skip to content

Commit b5a5433

Browse files
committed
Fix CS
1 parent 271b7a8 commit b5a5433

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

phpstan-autoload.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818

1919
$phpunitConfig = false;
2020
if ($phpunitConfigFilename) {
21-
$phpunitConfig = new DomDocument();
21+
$phpunitConfig = new DOMDocument();
2222
$phpunitConfig->load($phpunitConfigFilename);
2323
}
2424
}
2525

2626
if (false !== $phpunitConfig) {
27-
$var = new DOMXpath($phpunitConfig);
27+
$var = new DOMXPath($phpunitConfig);
2828
foreach ($var->query('//php/server[@name="'.$name.'"]') as $var) {
2929
return $var->getAttribute('value');
3030
}

0 commit comments

Comments
 (0)