fix phpstan and rector errors, fix path for rector rules

This commit is contained in:
2024-02-13 19:12:14 +01:00
parent f889d67e94
commit 2ddfd56401
8 changed files with 12 additions and 14 deletions

View File

@@ -17,14 +17,14 @@ use Chill\MainBundle\Export\ExportInterface;
use Chill\MainBundle\Export\FilterInterface;
use Chill\MainBundle\Export\ListInterface;
use PhpParser\Node;
use Rector\Core\Rector\AbstractRector;
use Rector\Rector\AbstractRector;
use Rector\Symfony\NodeAnalyzer\ClassAnalyzer;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
class ChillBundleAddFormDefaultDataOnExportFilterAggregatorRector extends AbstractRector
final readonly class ChillBundleAddFormDefaultDataOnExportFilterAggregatorRector extends AbstractRector
{
public function __construct(
private readonly ClassAnalyzer $classAnalyzer,
private ClassAnalyzer $classAnalyzer,
) {}
public function getRuleDefinition(): RuleDefinition