Skip to content

Commit 4d72c29

Browse files
committed
Updated Rector to commit 85e5e11e71a026bfd91210c3a25f1dee1404e74b
rectorphp/rector-src@85e5e11 Fix code style issue (#7143)
1 parent 22b0ee8 commit 4d72c29

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

rules/Renaming/ValueObject/RenameCast.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
final class RenameCast
1010
{
1111
/**
12+
* @var class-string<Cast>
1213
* @readonly
1314
*/
1415
private string $fromCastExprClass;
@@ -20,9 +21,11 @@ final class RenameCast
2021
* @readonly
2122
*/
2223
private int $toCastKind;
24+
/**
25+
* @param class-string<Cast> $fromCastExprClass
26+
*/
2327
public function __construct(string $fromCastExprClass, int $fromCastKind, int $toCastKind)
2428
{
25-
/** @var class-string<Cast> */
2629
$this->fromCastExprClass = $fromCastExprClass;
2730
$this->fromCastKind = $fromCastKind;
2831
$this->toCastKind = $toCastKind;

src/Application/VersionResolver.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ final class VersionResolver
1919
* @api
2020
* @var string
2121
*/
22-
public const PACKAGE_VERSION = 'e2c8fc0e63931d1806f07c87cb0c3e98dc210ffa';
22+
public const PACKAGE_VERSION = '85e5e11e71a026bfd91210c3a25f1dee1404e74b';
2323
/**
2424
* @api
2525
* @var string
2626
*/
27-
public const RELEASE_DATE = '2025-08-11 23:00:48';
27+
public const RELEASE_DATE = '2025-08-13 11:52:04';
2828
/**
2929
* @var int
3030
*/

0 commit comments

Comments
 (0)