diff --git a/composer.lock b/composer.lock index 68ce426efe..85fe5337e8 100644 --- a/composer.lock +++ b/composer.lock @@ -1030,16 +1030,16 @@ }, { "name": "symfony/yaml", - "version": "v6.3.8", + "version": "v6.4.0", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "3493af8a8dad7fa91c77fa473ba23ecd95334a92" + "reference": "4f9237a1bb42455d609e6687d2613dde5b41a587" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/3493af8a8dad7fa91c77fa473ba23ecd95334a92", - "reference": "3493af8a8dad7fa91c77fa473ba23ecd95334a92", + "url": "https://api.github.com/repos/symfony/yaml/zipball/4f9237a1bb42455d609e6687d2613dde5b41a587", + "reference": "4f9237a1bb42455d609e6687d2613dde5b41a587", "shasum": "" }, "require": { @@ -1051,7 +1051,7 @@ "symfony/console": "<5.4" }, "require-dev": { - "symfony/console": "^5.4|^6.0" + "symfony/console": "^5.4|^6.0|^7.0" }, "bin": [ "Resources/bin/yaml-lint" @@ -1082,7 +1082,7 @@ "description": "Loads and dumps YAML files", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/yaml/tree/v6.3.8" + "source": "https://github.com/symfony/yaml/tree/v6.4.0" }, "funding": [ { @@ -1098,7 +1098,7 @@ "type": "tidelift" } ], - "time": "2023-11-06T10:58:05+00:00" + "time": "2023-11-06T11:00:25+00:00" } ], "packages-dev": [], diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index a0e39241b6..e7f58ae790 100644 --- a/vendor/composer/installed.json +++ b/vendor/composer/installed.json @@ -1069,17 +1069,17 @@ }, { "name": "symfony/yaml", - "version": "v6.3.8", - "version_normalized": "6.3.8.0", + "version": "v6.4.0", + "version_normalized": "6.4.0.0", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "3493af8a8dad7fa91c77fa473ba23ecd95334a92" + "reference": "4f9237a1bb42455d609e6687d2613dde5b41a587" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/3493af8a8dad7fa91c77fa473ba23ecd95334a92", - "reference": "3493af8a8dad7fa91c77fa473ba23ecd95334a92", + "url": "https://api.github.com/repos/symfony/yaml/zipball/4f9237a1bb42455d609e6687d2613dde5b41a587", + "reference": "4f9237a1bb42455d609e6687d2613dde5b41a587", "shasum": "" }, "require": { @@ -1091,9 +1091,9 @@ "symfony/console": "<5.4" }, "require-dev": { - "symfony/console": "^5.4|^6.0" + "symfony/console": "^5.4|^6.0|^7.0" }, - "time": "2023-11-06T10:58:05+00:00", + "time": "2023-11-06T11:00:25+00:00", "bin": [ "Resources/bin/yaml-lint" ], @@ -1124,7 +1124,7 @@ "description": "Loads and dumps YAML files", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/yaml/tree/v6.3.8" + "source": "https://github.com/symfony/yaml/tree/v6.4.0" }, "funding": [ { diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php index c8e6379e52..46132ca5e5 100644 --- a/vendor/composer/installed.php +++ b/vendor/composer/installed.php @@ -167,9 +167,9 @@ ), ), 'symfony/yaml' => array( - 'pretty_version' => 'v6.3.8', - 'version' => '6.3.8.0', - 'reference' => '3493af8a8dad7fa91c77fa473ba23ecd95334a92', + 'pretty_version' => 'v6.4.0', + 'version' => '6.4.0.0', + 'reference' => '4f9237a1bb42455d609e6687d2613dde5b41a587', 'type' => 'library', 'install_path' => __DIR__ . '/../symfony/yaml', 'aliases' => array(), diff --git a/vendor/symfony/yaml/Inline.php b/vendor/symfony/yaml/Inline.php index 23fdedf778..382fa51c24 100644 --- a/vendor/symfony/yaml/Inline.php +++ b/vendor/symfony/yaml/Inline.php @@ -55,12 +55,8 @@ public static function initialize(int $flags, int $parsedLineNumber = null, stri * * @throws ParseException */ - public static function parse(string $value = null, int $flags = 0, array &$references = []): mixed + public static function parse(string $value, int $flags = 0, array &$references = []): mixed { - if (null === $value) { - return ''; - } - self::initialize($flags); $value = trim($value); @@ -161,7 +157,7 @@ public static function dump(mixed $value, int $flags = 0): string } elseif (floor($value) == $value && $repr == $value) { // Preserve float data type since storing a whole number will result in integer value. if (!str_contains($repr, 'E')) { - $repr = $repr.'.0'; + $repr .= '.0'; } } } else { diff --git a/vendor/symfony/yaml/composer.json b/vendor/symfony/yaml/composer.json index 3b648af5a4..7dfb7d0a18 100644 --- a/vendor/symfony/yaml/composer.json +++ b/vendor/symfony/yaml/composer.json @@ -21,7 +21,7 @@ "symfony/polyfill-ctype": "^1.8" }, "require-dev": { - "symfony/console": "^5.4|^6.0" + "symfony/console": "^5.4|^6.0|^7.0" }, "conflict": { "symfony/console": "<5.4"