1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-26 20:34:47 +01:00

Fix composer checks once more

This commit is contained in:
Matthew Brown 2020-01-01 17:29:30 -05:00
parent e70a282bce
commit 033b610770
2 changed files with 7 additions and 5 deletions

View File

@ -2,7 +2,9 @@
"symbol-whitelist" : [
"null", "true", "false",
"static", "self", "parent",
"array", "string", "int", "float", "bool", "iterable", "callable", "void", "object"
"array", "string", "int", "float", "bool", "iterable", "callable", "void", "object",
"igbinary_serialize", "igbinary_unserialize", "PHP_PARSER_VERSION", "PSALM_VERSION", "runkit_object_id",
"sapi_windows_cp_is_utf8"
],
"php-core-extensions" : [
"Core",

View File

@ -1,7 +1,7 @@
<?php
namespace Psalm\Internal\PluginManager;
use DomDocument;
use DOMDocument;
use function file_get_contents;
use function file_put_contents;
use Psalm\Config;
@ -106,9 +106,9 @@ class ConfigFile
$this->saveXml($config_xml);
}
private function readXml(): DomDocument
private function readXml(): DOMDocument
{
$doc = new DomDocument();
$doc = new DOMDocument();
$file_contents = file_get_contents($this->path);
@ -127,7 +127,7 @@ class ConfigFile
}
/** @return void */
private function saveXml(DomDocument $config_xml)
private function saveXml(DOMDocument $config_xml)
{
$new_file_contents = $config_xml->saveXML($config_xml);