Skip to content

Commit

Permalink
Updated Rector to commit e17f4526a7aa8344d0bfbf61d16d125970a3d31a
Browse files Browse the repository at this point in the history
rectorphp/rector-src@e17f452 Fix RectorParser::parseString() parameter name (#5467)
  • Loading branch information
TomasVotruba committed Jan 14, 2024
1 parent 02f3386 commit bc8f465
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Application/VersionResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down
4 changes: 2 additions & 2 deletions src/PhpParser/Parser/RectorParser.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ public function parseFile(string $filePath) : array
/**
* @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
{
Expand Down

0 comments on commit bc8f465

Please sign in to comment.