diff --git a/src/Application/VersionResolver.php b/src/Application/VersionResolver.php index 71d191a7b3c..7e2b72865e6 100644 --- a/src/Application/VersionResolver.php +++ b/src/Application/VersionResolver.php @@ -19,12 +19,12 @@ final class VersionResolver * @api * @var string */ - public const PACKAGE_VERSION = 'd8907846bd387507ca81d068c029f2567d58bb5c'; + public const PACKAGE_VERSION = '657daffa74e36aab5223d389ff80fa178c180259'; /** * @api * @var string */ - public const RELEASE_DATE = '2025-01-29 10:22:59'; + public const RELEASE_DATE = '2025-01-29 17:39:29'; /** * @var int */ diff --git a/src/PhpParser/NodeTransformer.php b/src/PhpParser/NodeTransformer.php index 4541c6593d1..250552c0f48 100644 --- a/src/PhpParser/NodeTransformer.php +++ b/src/PhpParser/NodeTransformer.php @@ -113,7 +113,7 @@ final class NodeTransformer */ private function splitBySpace(string $value) : array { - $value = \str_getcsv($value, ' '); + $value = \str_getcsv($value, ' ', '"', "\\"); return \array_filter($value); } /**