Updated Rector to commit e17f4526a7aa8344d0bfbf61d16d125970a3d31a

e17f4526a7 Fix RectorParser::parseString() parameter name (#5467)
This commit is contained in:
Tomas Votruba 2024-01-14 17:53:17 +00:00
parent 02f3386770
commit bc8f465840
2 changed files with 4 additions and 4 deletions

View File

@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = 'deb4daed28666606b032e3e0df1a50e01a5c2a72';
public const PACKAGE_VERSION = 'e17f4526a7aa8344d0bfbf61d16d125970a3d31a';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2024-01-14 00:28:29';
public const RELEASE_DATE = '2024-01-14 17:51:07';
/**
* @var int
*/

View File

@ -36,9 +36,9 @@ final class RectorParser
/**
* @return Stmt[]
*/
public function parseString(string $filePath) : array
public function parseString(string $fileContent) : array
{
return $this->parser->parseString($filePath);
return $this->parser->parseString($fileContent);
}
public function parseFileContentToStmtsAndTokens(string $fileContent) : StmtsAndTokens
{