mimmi20/laminas-form-element-links

View on GitHub
rector.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
 
/**
* This file is part of the mimmi20/laminas-form-element-links package.
*
* Copyright (c) 2021-2025, Thomas Mueller <mimmi20@live.de>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
 
declare(strict_types = 1);
 
use Rector\Config\RectorConfig;
use Rector\DeadCode\Rector\If_\RemoveAlwaysTrueIfConditionRector;
use Rector\DeadCode\Rector\If_\RemoveDeadInstanceOfRector;
use Rector\DeadCode\Rector\StaticCall\RemoveParentCallWithoutParentRector;
use Rector\Php81\Rector\Array_\FirstClassCallableRector;
use Rector\Php81\Rector\FuncCall\NullToStrictStringFuncCallArgRector;
use Rector\PHPUnit\Set\PHPUnitSetList;
use Rector\Set\ValueObject\LevelSetList;
use Rector\Set\ValueObject\SetList;
 
return static function (RectorConfig $rectorConfig): void {
$rectorConfig->paths([
__DIR__ . '/src',
__DIR__ . '/tests',
]);
 
$rectorConfig->sets([
SetList::DEAD_CODE,
LevelSetList::UP_TO_PHP_83,
PHPUnitSetList::PHPUNIT_100,
]);
 
$rectorConfig->skip(
[
NullToStrictStringFuncCallArgRector::class,
RemoveDeadInstanceOfRector::class,
FirstClassCallableRector::class,
RemoveAlwaysTrueIfConditionRector::class,
RemoveParentCallWithoutParentRector::class,
],
);
};