mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-25 20:23:49 +01:00
88a32076c6
[Php74] Skip readonly on RestoreDefaultNullToNullableTypePropertyRector (#1713)
20 lines
1021 B
PHP
20 lines
1021 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace RectorPrefix20220122;
|
|
|
|
use Rector\Php52\Rector\Property\VarToPublicPropertyRector;
|
|
use Rector\Php52\Rector\Switch_\ContinueToBreakInSwitchRector;
|
|
use Rector\Removing\Rector\FuncCall\RemoveFuncCallArgRector;
|
|
use Rector\Removing\ValueObject\RemoveFuncCallArg;
|
|
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
|
|
return static function (\Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator $containerConfigurator) : void {
|
|
$services = $containerConfigurator->services();
|
|
$services->set(\Rector\Php52\Rector\Property\VarToPublicPropertyRector::class);
|
|
$services->set(\Rector\Php52\Rector\Switch_\ContinueToBreakInSwitchRector::class);
|
|
$services->set(\Rector\Removing\Rector\FuncCall\RemoveFuncCallArgRector::class)->configure([
|
|
// see https://www.php.net/manual/en/function.ldap-first-attribute.php
|
|
new \Rector\Removing\ValueObject\RemoveFuncCallArg('ldap_first_attribute', 2),
|
|
]);
|
|
};
|