2020-07-18 18:57:24 +02:00
|
|
|
<?php
|
|
|
|
|
2021-05-09 20:15:43 +00:00
|
|
|
declare (strict_types=1);
|
2021-09-28 05:01:55 +00:00
|
|
|
namespace RectorPrefix20210928;
|
2020-07-18 18:57:24 +02:00
|
|
|
|
2020-08-18 17:57:30 +02:00
|
|
|
use Rector\Php70\Rector\Assign\ListSplitStringRector;
|
|
|
|
use Rector\Php70\Rector\Assign\ListSwapArrayOrderRector;
|
2020-07-18 18:57:24 +02:00
|
|
|
use Rector\Php70\Rector\Break_\BreakNotInLoopOrSwitchToReturnRector;
|
2020-08-18 17:57:30 +02:00
|
|
|
use Rector\Php70\Rector\ClassMethod\Php4ConstructorRector;
|
2020-07-18 18:57:24 +02:00
|
|
|
use Rector\Php70\Rector\FuncCall\CallUserMethodRector;
|
|
|
|
use Rector\Php70\Rector\FuncCall\EregToPregMatchRector;
|
|
|
|
use Rector\Php70\Rector\FuncCall\MultiDirnameRector;
|
|
|
|
use Rector\Php70\Rector\FuncCall\NonVariableToVariableOnFunctionCallRector;
|
|
|
|
use Rector\Php70\Rector\FuncCall\RandomFunctionRector;
|
|
|
|
use Rector\Php70\Rector\FuncCall\RenameMktimeWithoutArgsToTimeRector;
|
|
|
|
use Rector\Php70\Rector\FunctionLike\ExceptionHandlerTypehintRector;
|
|
|
|
use Rector\Php70\Rector\If_\IfToSpaceshipRector;
|
|
|
|
use Rector\Php70\Rector\List_\EmptyListRector;
|
|
|
|
use Rector\Php70\Rector\MethodCall\ThisCallOnStaticMethodToStaticCallRector;
|
|
|
|
use Rector\Php70\Rector\StaticCall\StaticCallOnNonStaticToInstanceCallRector;
|
|
|
|
use Rector\Php70\Rector\Switch_\ReduceMultipleDefaultSwitchRector;
|
|
|
|
use Rector\Php70\Rector\Ternary\TernaryToNullCoalescingRector;
|
|
|
|
use Rector\Php70\Rector\Ternary\TernaryToSpaceshipRector;
|
2020-07-21 10:23:25 +01:00
|
|
|
use Rector\Php70\Rector\Variable\WrapVariableVariableNameInCurlyBracesRector;
|
2021-06-02 10:21:10 +00:00
|
|
|
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
|
|
|
|
return static function (\Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator $containerConfigurator) : void {
|
2020-07-21 02:01:14 +02:00
|
|
|
$containerConfigurator->import(__DIR__ . '/mysql-to-mysqli.php');
|
2020-07-18 18:57:24 +02:00
|
|
|
$services = $containerConfigurator->services();
|
2021-05-10 22:23:08 +00:00
|
|
|
$services->set(\Rector\Php70\Rector\ClassMethod\Php4ConstructorRector::class);
|
|
|
|
$services->set(\Rector\Php70\Rector\Ternary\TernaryToNullCoalescingRector::class);
|
|
|
|
$services->set(\Rector\Php70\Rector\FuncCall\RandomFunctionRector::class);
|
|
|
|
$services->set(\Rector\Php70\Rector\FunctionLike\ExceptionHandlerTypehintRector::class);
|
|
|
|
$services->set(\Rector\Php70\Rector\FuncCall\MultiDirnameRector::class);
|
|
|
|
$services->set(\Rector\Php70\Rector\Assign\ListSplitStringRector::class);
|
|
|
|
$services->set(\Rector\Php70\Rector\List_\EmptyListRector::class);
|
2020-07-18 18:57:24 +02:00
|
|
|
# be careful, run this just once, since it can keep swapping order back and forth
|
2021-05-10 22:23:08 +00:00
|
|
|
$services->set(\Rector\Php70\Rector\Assign\ListSwapArrayOrderRector::class);
|
|
|
|
$services->set(\Rector\Php70\Rector\FuncCall\CallUserMethodRector::class);
|
|
|
|
$services->set(\Rector\Php70\Rector\FuncCall\EregToPregMatchRector::class);
|
|
|
|
$services->set(\Rector\Php70\Rector\Switch_\ReduceMultipleDefaultSwitchRector::class);
|
|
|
|
$services->set(\Rector\Php70\Rector\Ternary\TernaryToSpaceshipRector::class);
|
|
|
|
$services->set(\Rector\Php70\Rector\Variable\WrapVariableVariableNameInCurlyBracesRector::class);
|
|
|
|
$services->set(\Rector\Php70\Rector\If_\IfToSpaceshipRector::class);
|
|
|
|
$services->set(\Rector\Php70\Rector\StaticCall\StaticCallOnNonStaticToInstanceCallRector::class);
|
|
|
|
$services->set(\Rector\Php70\Rector\MethodCall\ThisCallOnStaticMethodToStaticCallRector::class);
|
|
|
|
$services->set(\Rector\Php70\Rector\Break_\BreakNotInLoopOrSwitchToReturnRector::class);
|
|
|
|
$services->set(\Rector\Php70\Rector\FuncCall\RenameMktimeWithoutArgsToTimeRector::class);
|
|
|
|
$services->set(\Rector\Php70\Rector\FuncCall\NonVariableToVariableOnFunctionCallRector::class);
|
2020-07-18 18:57:24 +02:00
|
|
|
};
|