mirror of
https://github.com/LDAPAccountManager/lam.git
synced 2025-10-03 17:59:21 +02:00
refactoring
This commit is contained in:
parent
104dabc82d
commit
6b4e59bc32
1 changed files with 4 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
use Rector\CodeQuality\Rector\Class_\CompleteDynamicPropertiesRector;
|
use Rector\CodeQuality\Rector\Class_\CompleteDynamicPropertiesRector;
|
||||||
|
use Rector\CodeQuality\Rector\ClassMethod\ExplicitReturnNullRector;
|
||||||
use Rector\CodeQuality\Rector\ClassMethod\InlineArrayReturnAssignRector;
|
use Rector\CodeQuality\Rector\ClassMethod\InlineArrayReturnAssignRector;
|
||||||
use Rector\CodeQuality\Rector\Empty_\SimplifyEmptyCheckOnEmptyArrayRector;
|
use Rector\CodeQuality\Rector\Empty_\SimplifyEmptyCheckOnEmptyArrayRector;
|
||||||
use Rector\CodeQuality\Rector\For_\ForRepeatedCountToOwnVariableRector;
|
use Rector\CodeQuality\Rector\For_\ForRepeatedCountToOwnVariableRector;
|
||||||
|
@ -49,7 +50,9 @@ return RectorConfig::configure()
|
||||||
// TODO parent call check is unreliable, recheck with newer rector version
|
// TODO parent call check is unreliable, recheck with newer rector version
|
||||||
RemoveParentCallWithoutParentRector::class,
|
RemoveParentCallWithoutParentRector::class,
|
||||||
// TODO inherited properties check is unreliable, recheck with newer rector version
|
// TODO inherited properties check is unreliable, recheck with newer rector version
|
||||||
CompleteDynamicPropertiesRector::class
|
CompleteDynamicPropertiesRector::class,
|
||||||
|
// TODO unreliable, recheck with newer rector version
|
||||||
|
ExplicitReturnNullRector::class
|
||||||
])
|
])
|
||||||
->withFileExtensions([
|
->withFileExtensions([
|
||||||
'php',
|
'php',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue