Skip to content

Commit 645a179

Browse files
committed
Updated Rector to commit 39c234cdb8d6f11e287168e1cd787d3d21b6ca17
rectorphp/rector-src@39c234c Fix example CS in AddReturnDocblockFromMethodCallDocblockRector (#7947)
1 parent 43394b8 commit 645a179

3 files changed

Lines changed: 5 additions & 6 deletions

File tree

rules/TypeDeclarationDocblocks/Rector/ClassMethod/AddReturnDocblockFromMethodCallDocblockRector.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,14 +74,13 @@ public function findAll(): array
7474
// ...
7575
}
7676
}
77-
}
7877
CODE_SAMPLE
7978
, <<<'CODE_SAMPLE'
8079
final class SomeController
8180
{
8281
/**
83-
* @return SomeEntity[]
84-
*/
82+
* @return SomeEntity[]
83+
*/
8584
public function getAll(): array
8685
{
8786
return $this->repository->findAll();

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 = '930e7f59d99dee75a800b68e02006fbef7d7324c';
22+
public const PACKAGE_VERSION = '39c234cdb8d6f11e287168e1cd787d3d21b6ca17';
2323
/**
2424
* @api
2525
* @var string
2626
*/
27-
public const RELEASE_DATE = '2026-03-30 12:29:30';
27+
public const RELEASE_DATE = '2026-03-30 22:53:08';
2828
/**
2929
* @var int
3030
*/

0 commit comments

Comments
 (0)