mirror of
https://github.com/rectorphp/rector.git
synced 2025-03-13 20:12:07 +01:00
Updated Rector to commit 657daffa74e36aab5223d389ff80fa178c180259
657daffa74
Fix str_getcsv() escape argument on PHP 8.4 (#6704)
This commit is contained in:
parent
f26b8c528b
commit
869caf9d04
@ -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
|
||||
*/
|
||||
|
@ -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);
|
||||
}
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user