Skip to content

Commit 4bdf19f

Browse files
committed
move
1 parent 053a6cf commit 4bdf19f

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

config/sets/phpunit90.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
declare(strict_types=1);
44

55
use Rector\Config\RectorConfig;
6-
use Rector\PHPUnit\CodeQuality\Rector\MethodCall\AssertRegExpRector;
6+
use Rector\PHPUnit\PHPUnit90\Rector\MethodCall\AssertRegExpRector;
77
use Rector\PHPUnit\PHPUnit100\Rector\StmtsAwareInterface\WithConsecutiveRector;
88
use Rector\PHPUnit\PHPUnit90\Rector\Class_\TestListenerToHooksRector;
99
use Rector\PHPUnit\PHPUnit90\Rector\MethodCall\ExplicitPhpErrorApiRector;

rules-tests/CodeQuality/Rector/MethodCall/AssertRegExpRector/AssertRegExpRectorTest.php renamed to rules-tests/PHPUnit90/Rector/MethodCall/AssertRegExpRector/AssertRegExpRectorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Rector\PHPUnit\Tests\CodeQuality\Rector\MethodCall\AssertRegExpRector;
5+
namespace Rector\PHPUnit\Tests\PHPUnit90\Rector\MethodCall\AssertRegExpRector;
66

77
use Iterator;
88
use PHPUnit\Framework\Attributes\DataProvider;

rules-tests/CodeQuality/Rector/MethodCall/AssertRegExpRector/Fixture/fixture.php.inc renamed to rules-tests/PHPUnit90/Rector/MethodCall/AssertRegExpRector/Fixture/fixture.php.inc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Rector\PHPUnit\Tests\CodeQuality\Rector\MethodCall\AssertRegExpRector\Fixture;
3+
namespace Rector\PHPUnit\Tests\PHPUnit90\Rector\MethodCall\AssertRegExpRector\Fixture;
44

55
final class MyTest extends \PHPUnit\Framework\TestCase
66
{
@@ -17,7 +17,7 @@ final class MyTest extends \PHPUnit\Framework\TestCase
1717
-----
1818
<?php
1919

20-
namespace Rector\PHPUnit\Tests\CodeQuality\Rector\MethodCall\AssertRegExpRector\Fixture;
20+
namespace Rector\PHPUnit\Tests\PHPUnit90\Rector\MethodCall\AssertRegExpRector\Fixture;
2121

2222
final class MyTest extends \PHPUnit\Framework\TestCase
2323
{

rules-tests/CodeQuality/Rector/MethodCall/AssertRegExpRector/Fixture/skip_used_by_next_stmt.php.inc renamed to rules-tests/PHPUnit90/Rector/MethodCall/AssertRegExpRector/Fixture/skip_used_by_next_stmt.php.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Rector\PHPUnit\Tests\CodeQuality\Rector\MethodCall\AssertRegExpRector\Fixture;
3+
namespace Rector\PHPUnit\Tests\PHPUnit90\Rector\MethodCall\AssertRegExpRector\Fixture;
44

55
final class SkipUsedByNextStmt extends \PHPUnit\Framework\TestCase
66
{

rules-tests/CodeQuality/Rector/MethodCall/AssertRegExpRector/config/configured_rule.php renamed to rules-tests/PHPUnit90/Rector/MethodCall/AssertRegExpRector/config/configured_rule.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
declare(strict_types=1);
44

55
use Rector\Config\RectorConfig;
6-
use Rector\PHPUnit\CodeQuality\Rector\MethodCall\AssertRegExpRector;
6+
use Rector\PHPUnit\PHPUnit90\Rector\MethodCall\AssertRegExpRector;
77

88
return static function (RectorConfig $rectorConfig): void {
99
$rectorConfig->rule(AssertRegExpRector::class);

rules/CodeQuality/Rector/MethodCall/AssertRegExpRector.php renamed to rules/PHPUnit90/Rector/MethodCall/AssertRegExpRector.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Rector\PHPUnit\CodeQuality\Rector\MethodCall;
5+
namespace Rector\PHPUnit\PHPUnit90\Rector\MethodCall;
66

77
use PhpParser\Node;
88
use PhpParser\Node\Expr;
@@ -24,7 +24,7 @@
2424
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
2525

2626
/**
27-
* @see \Rector\PHPUnit\Tests\CodeQuality\Rector\MethodCall\AssertRegExpRector\AssertRegExpRectorTest
27+
* @see \Rector\PHPUnit\Tests\PHPUnit90\Rector\MethodCall\AssertRegExpRector\AssertRegExpRectorTest
2828
*/
2929
final class AssertRegExpRector extends AbstractRector
3030
{

0 commit comments

Comments
 (0)