You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
3.1 KiB
71 lines
3.1 KiB
4 years ago
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
use Rector\Core\Configuration\Option;
|
||
|
use Rector\Php74\Rector\Property\TypedPropertyRector;
|
||
|
use Rector\Set\ValueObject\SetList;
|
||
|
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
|
||
|
|
||
|
return static function (ContainerConfigurator $containerConfigurator): void {
|
||
|
// get parameters
|
||
|
$parameters = $containerConfigurator->parameters();
|
||
|
|
||
|
// Define what rule sets will be applied
|
||
|
$parameters->set(Option::SETS, [
|
||
|
//SetList::DEAD_CODE,
|
||
|
SetList::CODE_QUALITY,
|
||
|
SetList::PHP_74,
|
||
|
//SetList::DOCTRINE_CODE_QUALITY
|
||
|
]);
|
||
|
|
||
|
// register single rule
|
||
|
$services = $containerConfigurator->services();
|
||
|
//$services->set(TypedPropertyRector::class);
|
||
|
$services->set(\Rector\TypeDeclaration\Rector\Property\PropertyTypeDeclarationRector::class);
|
||
|
$services->set(\Rector\CakePHP\Rector\FileWithoutNamespace\ImplicitShortClassNameUseStatementRector::class);
|
||
|
$services->set(\PhpCsFixer\Fixer\Import\GlobalNamespaceImportFixer::class);
|
||
|
$services->set(\PhpCsFixer\Fixer\ControlStructure\YodaStyleFixer::class);
|
||
|
|
||
|
$services->set(Rector\DoctrineCodeQuality\Rector\ClassMethod\MakeEntitySetterNullabilityInSyncWithPropertyRector::class);
|
||
|
//$services->set(\Rector\DoctrineCodeQuality\Rector\Property\RemoveRedundantDefaultPropertyAnnotationValuesRector::class);
|
||
|
$services->set(\Rector\DoctrineCodeQuality\Rector\Property\CorrectDefaultTypesOnEntityPropertyRector::class);
|
||
|
//$services->set(\Rector\DoctrineCodeQuality\Rector\Property\ImproveDoctrineCollectionDocTypeInEntityRector::class);
|
||
|
//$parameters->set(\Rector\DeadCode\Rector\ClassMethod\RemoveUnusedParameterRector::class, false);
|
||
|
|
||
|
$parameters->set(
|
||
|
Option::SYMFONY_CONTAINER_XML_PATH_PARAMETER,
|
||
|
__DIR__ . '/var/cache/dev/Chamilo_KernelDevDebugContainer.xml'
|
||
|
);
|
||
|
|
||
|
$parameters->set(
|
||
|
Option::SKIP,
|
||
|
[
|
||
|
__DIR__.'/src/CoreBundle/Menu/*',
|
||
|
__DIR__.'/src/CoreBundle/Component/Editor/*',
|
||
|
__DIR__.'/src/CourseBundle/Component/CourseCopy/*',
|
||
|
__DIR__.'/src/CoreBundle/Component/HTMLPurifier/*',
|
||
|
__DIR__.'/src/LtiBundle/*',
|
||
|
__DIR__.'/src/GraphQlBundle/*',
|
||
|
__DIR__.'/src/CoreBundle/Hook/*',
|
||
|
__DIR__.'/src/CoreBundle/Migrations/*',
|
||
|
__DIR__.'/src/CoreBundle/Twig/SettingsHelper.php',
|
||
|
__DIR__.'/src/CoreBundle/Settings/SettingsResolver.php',
|
||
|
//__DIR__.'/src/CoreBundle/Controller/ResourceApiController.php',
|
||
|
//__DIR__.'/src/CoreBundle/Controller/EditorController.php',
|
||
|
__DIR__.'/src/CoreBundle/Component/Editor/*',
|
||
|
\Rector\DeadCode\Rector\ClassMethod\RemoveUnusedParameterRector::class,
|
||
|
\PhpCsFixer\Fixer\FunctionNotation\UseArrowFunctionsFixer::class,
|
||
|
\Rector\Php74\Rector\Closure\ClosureToArrowFunctionRector::class
|
||
|
]
|
||
|
);
|
||
|
|
||
|
$parameters->set(Option::AUTO_IMPORT_NAMES, true);
|
||
|
|
||
|
// get services (needed for register a single rule)
|
||
|
// $services = $containerConfigurator->services();
|
||
|
|
||
|
// register a single rule
|
||
|
// $services->set(TypedPropertyRector::class);
|
||
|
};
|