Skip to content

Commit

Permalink
remove deprecated set list marker
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasVotruba committed Nov 12, 2024
1 parent d9cef57 commit f7cecea
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 9 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
"phpstan/phpstan-webmozart-assert": "^1.2",
"phpunit/phpunit": "^10.5",
"rector/rector-src": "dev-main",
"rector/type-perfect": "^0.1.8",
"rector/type-perfect": "^1.0",
"symplify/easy-coding-standard": "^12.3",
"symplify/phpstan-extensions": "^11.4",
"symplify/phpstan-rules": "^13.0",
"symplify/rule-doc-generator": "^12.2",
"symplify/vendor-patches": "^11.3",
"tomasvotruba/class-leak": "^0.2.13",
"tomasvotruba/class-leak": "^1.0",
"tracy/tracy": "^2.10"
},
"autoload": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ final class DowngradeReadonlyPropertyRector extends AbstractRector
public function __construct(
private readonly VisibilityManipulator $visibilityManipulator,
private readonly DocBlockUpdater $docBlockUpdater,
protected PhpDocInfoFactory $phpDocInfoFactory,
private PhpDocInfoFactory $phpDocInfoFactory,
) {
}

Expand Down
5 changes: 2 additions & 3 deletions src/Set/ValueObject/DowngradeLevelSetList.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,11 @@

namespace Rector\Set\ValueObject;

use Rector\Set\Contract\SetListInterface;

/**
* @api
* @deprecated use ->withDowngradeSets() in rector.php instead
*/
final class DowngradeLevelSetList implements SetListInterface
final class DowngradeLevelSetList
{
/**
* @var string
Expand Down
5 changes: 2 additions & 3 deletions src/Set/ValueObject/DowngradeSetList.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,11 @@

namespace Rector\Set\ValueObject;

use Rector\Set\Contract\SetListInterface;

/**
* @api
* @deprecated use ->withDowngradeSets() in rector.php instead
*/
final class DowngradeSetList implements SetListInterface
final class DowngradeSetList
{
/**
* @var string
Expand Down

0 comments on commit f7cecea

Please sign in to comment.