Updated Rector to commit 657daffa74e36aab5223d389ff80fa178c180259

657daffa74 Fix str_getcsv() escape argument on PHP 8.4 (#6704)
This commit is contained in:
Tomas Votruba 2025-01-29 10:41:54 +00:00
parent f26b8c528b
commit 869caf9d04
2 changed files with 3 additions and 3 deletions

View File

@ -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
*/

View File

@ -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);
}
/**