Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rector preset #314

Merged
merged 2 commits into from
May 30, 2024
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
3 changes: 2 additions & 1 deletion rector.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
codingStyle: true,
naming: true,
typeDeclarations: true,
privatization: true
privatization: true,
rectorPreset: true
)
->withConfiguredRule(StringClassNameToClassConstantRector::class, [
'Doctrine\*',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public function run(): iterable
}

/**
* @param ClassMethod|MethodCall|Node\Stmt\Foreach_ $node
* @param ClassMethod|MethodCall|Foreach_ $node
*/
public function refactor(Node $node): MethodCall|ClassMethod|Foreach_|null
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
<?php

declare(strict_types=1);

namespace Rector\Doctrine\Tests\Set\DoctrineCOLLECTION22Set;

use Iterator;
use PHPUnit\Framework\Attributes\DataProvider;
use Rector\Testing\PHPUnit\AbstractRectorTestCase;

class DoctrineCOLLECTION22SetTest extends AbstractRectorTestCase
final class DoctrineCOLLECTION22SetTest extends AbstractRectorTestCase
{
public function provideConfigFilePath(): string
{
Expand Down
Loading