upgrade rector rules and apply them

This commit is contained in:
Julien Fastré 2023-12-12 17:17:15 +01:00
parent e2a37fd80b
commit 99b7b2ec88
Signed by: julienfastre
GPG Key ID: BDE2190974723FCB
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ return static function (RectorConfig $rectorConfig): void {
//define sets of rules //define sets of rules
$rectorConfig->sets([ $rectorConfig->sets([
LevelSetList::UP_TO_PHP_82, LevelSetList::UP_TO_PHP_82,
\Rector\Symfony\Set\SymfonyLevelSetList::UP_TO_SYMFONY_44, \Rector\Symfony\Set\SymfonyLevelSetList::UP_TO_SYMFONY_50,
\Rector\Symfony\Set\SymfonySetList::SYMFONY_50_TYPES, \Rector\Symfony\Set\SymfonySetList::SYMFONY_50_TYPES,
\Rector\Doctrine\Set\DoctrineSetList::DOCTRINE_CODE_QUALITY, \Rector\Doctrine\Set\DoctrineSetList::DOCTRINE_CODE_QUALITY,
\Rector\PHPUnit\Set\PHPUnitLevelSetList::UP_TO_PHPUNIT_90, \Rector\PHPUnit\Set\PHPUnitLevelSetList::UP_TO_PHPUNIT_90,

View File

@ -134,7 +134,7 @@ final class PersonControllerCreateTest extends WebTestCase
return $form; return $form;
} }
public function testReviewExistingDetectionInversedLastNameWithFirstName() public function testReviewExistingDetectionInversedLastNameWithFirstName(): never
{ {
$this->markTestSkipped(); $this->markTestSkipped();
$client = $this->getClientAuthenticated(); $client = $this->getClientAuthenticated();