-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Symfony 6.1] Skip abstract class on CommandConfigureToAttributeRect…
…or (#662) * [Symfony 6.1] Skip abstract class on CommandConfigureToAttributeRector * [Symfony 6.1] Skip abstract class on CommandConfigureToAttributeRector * [Symfony 6.1] Skip abstract class on CommandConfigureToAttributeRector
- Loading branch information
1 parent
0eca1e4
commit d7cc42e
Showing
2 changed files
with
16 additions
and
0 deletions.
There are no files selected for viewing
12 changes: 12 additions & 0 deletions
12
...ony61/Rector/Class_/CommandConfigureToAttributeRector/Fixture/skip_abstract_class.php.inc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php | ||
|
||
namespace Rector\Symfony\Tests\Symfony61\Rector\Class_\CommandConfigureToAttributeRector\Fixture; | ||
|
||
use Symfony\Component\Console\Command\Command; | ||
|
||
abstract class SkipAbstractClass extends Command | ||
{ | ||
public function configure() | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters