Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"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",
"symfony/config": "^6.4",
"symfony/dependency-injection": "^6.4",
"symfony/http-kernel": "~6.3",
Expand All @@ -25,8 +25,8 @@
"symplify/phpstan-extensions": "^11.4",
"symplify/phpstan-rules": "^13.0",
"symplify/vendor-patches": "^11.3",
"tomasvotruba/class-leak": "^0.2",
"tomasvotruba/unused-public": "^0.4",
"tomasvotruba/class-leak": "^1.0",
"tomasvotruba/unused-public": "^1.0",
"tracy/tracy": "^2.10"
},
"autoload": {
Expand Down
6 changes: 3 additions & 3 deletions src/Set/FOSRestSetList.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@

namespace Rector\Symfony\Set;

use Rector\Set\Contract\SetListInterface;

/**
* @deprecated Use ->withAttributesSets(symfony: true) in rector.php config instead
*
* @api used in public
*/
final class FOSRestSetList implements SetListInterface
final class FOSRestSetList
{
/**
* @var string
Expand Down
6 changes: 3 additions & 3 deletions src/Set/JMSSetList.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@

namespace Rector\Symfony\Set;

use Rector\Set\Contract\SetListInterface;

/**
* @deprecated Use ->withAttributesSets(symfony: true) in rector.php config instead
*
* @api
*/
final class JMSSetList implements SetListInterface
final class JMSSetList
{
/**
* @var string
Expand Down
6 changes: 3 additions & 3 deletions src/Set/SensiolabsSetList.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@

namespace Rector\Symfony\Set;

use Rector\Set\Contract\SetListInterface;

/**
* @deprecated Use ->withAttributesSets(symfony: true) in rector.php config instead
*
* @api
*/
final class SensiolabsSetList implements SetListInterface
final class SensiolabsSetList
{
/**
* @var string
Expand Down
4 changes: 1 addition & 3 deletions src/Set/SwiftMailerSetList.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,10 @@

namespace Rector\Symfony\Set;

use Rector\Set\Contract\SetListInterface;

/**
* @api
*/
final class SwiftMailerSetList implements SetListInterface
final class SwiftMailerSetList
{
/**
* @var string
Expand Down
6 changes: 3 additions & 3 deletions src/Set/SymfonySetList.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,10 @@

namespace Rector\Symfony\Set;

use Rector\Set\Contract\SetListInterface;

/**
* @api
*/
final class SymfonySetList implements SetListInterface
final class SymfonySetList
{
/**
* @var string
Expand Down Expand Up @@ -117,6 +115,7 @@ final class SymfonySetList implements SetListInterface
final public const SYMFONY_54 = __DIR__ . '/../../config/sets/symfony/symfony54.php';

/**
* @deprecated Use ->withAttributesSets(symfony: true) in rector.php config instead
* @var string
*/
final public const SYMFONY_52_VALIDATOR_ATTRIBUTES = __DIR__ . '/../../config/sets/symfony/symfony52-validator-attributes.php';
Expand Down Expand Up @@ -167,6 +166,7 @@ final class SymfonySetList implements SetListInterface
final public const SYMFONY_CONSTRUCTOR_INJECTION = __DIR__ . '/../../config/sets/symfony/symfony-constructor-injection.php';

/**
* @deprecated Use ->withAttributesSets(symfony: true) in rector.php config instead
* @var string
*/
final public const ANNOTATIONS_TO_ATTRIBUTES = __DIR__ . '/../../config/sets/symfony/annotations-to-attributes.php';
Expand Down
4 changes: 1 addition & 3 deletions src/Set/TwigSetList.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,10 @@

namespace Rector\Symfony\Set;

use Rector\Set\Contract\SetListInterface;

/**
* @api
*/
final class TwigSetList implements SetListInterface
final class TwigSetList
{
/**
* @var string
Expand Down
Loading