Updated Rector to commit 1fe8f3a7694b7fad2e6fee66b575fe2e05738824

1fe8f3a769 [tidy] Use code sample format (#5508)
This commit is contained in:
Tomas Votruba 2024-01-27 12:03:51 +00:00
parent e41705aa94
commit b6bd629be8
2 changed files with 10 additions and 5 deletions

View File

@ -19,12 +19,12 @@ final class VersionResolver
* @api * @api
* @var string * @var string
*/ */
public const PACKAGE_VERSION = 'a6ace939a0cbccd31623d3e18677ea8791e69aab'; public const PACKAGE_VERSION = '1fe8f3a7694b7fad2e6fee66b575fe2e05738824';
/** /**
* @api * @api
* @var string * @var string
*/ */
public const RELEASE_DATE = '2024-01-27 05:34:41'; public const RELEASE_DATE = '2024-01-27 12:01:46';
/** /**
* @var int * @var int
*/ */

View File

@ -18,9 +18,14 @@ final class __Name__ extends AbstractRector
{ {
return new RuleDefinition('// @todo fill the description', [ return new RuleDefinition('// @todo fill the description', [
new CodeSample( new CodeSample(
'// @todo fill code before', <<<'CODE_SAMPLE'
'// @todo fill code after' // @todo fill code before
) CODE_SAMPLE
,
<<<'CODE_SAMPLE'
// @todo fill code after
CODE_SAMPLE
),
]); ]);
} }