Skip to content

Commit

Permalink
maint: Fully remove document-generator references
Browse files Browse the repository at this point in the history
  • Loading branch information
famoser committed Jan 2, 2025
1 parent 111a9a5 commit 2e44f28
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
1 change: 0 additions & 1 deletion .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
COMMENT;

$finder = PhpCsFixer\Finder::create()
->in('document-generator')
->in('src')
->in('tests');

Expand Down
5 changes: 1 addition & 4 deletions rector.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,17 @@

declare(strict_types=1);

use Rector\CodeQuality\Rector\Class_\InlineConstructorDefaultToPropertyRector;
use Rector\Config\RectorConfig;
use Rector\Php80\Rector\Class_\ClassPropertyAssignToConstructorPromotionRector;
use Rector\Set\ValueObject\LevelSetList;

return static function (RectorConfig $rectorConfig): void {
$rectorConfig->paths([
__DIR__.'/document-generator',
__DIR__.'/src',
__DIR__.'/tests',
]);

// define sets of rules
$rectorConfig->sets([
LevelSetList::UP_TO_PHP_82
LevelSetList::UP_TO_PHP_82,
]);
};

0 comments on commit 2e44f28

Please sign in to comment.