Skip to content

Commit

Permalink
Updated Rector to commit 54491a53f081fd8785269513b1650a524a9077f1
Browse files Browse the repository at this point in the history
rectorphp/rector-src@54491a5 [BetterphpDocparser] Remove new PrivatesAccessor() on promotion property on BetterPhpDocParser (#5368)
  • Loading branch information
TomasVotruba committed Dec 17, 2023
1 parent 785ac22 commit 291e258
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,8 @@ final class BetterPhpDocParser extends PhpDocParser
/**
* @param PhpDocNodeDecoratorInterface[] $phpDocNodeDecorators
*/
public function __construct(TypeParser $typeParser, ConstExprParser $constExprParser, TokenIteratorFactory $tokenIteratorFactory, array $phpDocNodeDecorators, PrivatesAccessor $privatesAccessor = null)
public function __construct(TypeParser $typeParser, ConstExprParser $constExprParser, TokenIteratorFactory $tokenIteratorFactory, array $phpDocNodeDecorators, PrivatesAccessor $privatesAccessor)
{
$privatesAccessor = $privatesAccessor ?? new PrivatesAccessor();
$this->tokenIteratorFactory = $tokenIteratorFactory;
$this->phpDocNodeDecorators = $phpDocNodeDecorators;
$this->privatesAccessor = $privatesAccessor;
Expand Down
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 = '89d2c9c4eb2bfddc226136899b1fdb0a99d19a8a';
public const PACKAGE_VERSION = '54491a53f081fd8785269513b1650a524a9077f1';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2023-12-17 13:34:46';
public const RELEASE_DATE = '2023-12-17 07:27:47';
/**
* @var int
*/
Expand Down

0 comments on commit 291e258

Please sign in to comment.