mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-19 06:18:07 +01:00
prepare SYMFONY_PHP_CONFIG set
This commit is contained in:
parent
54353be782
commit
54beea72f8
9
config/set/symfony-php-config.php
Normal file
9
config/set/symfony-php-config.php
Normal file
@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
|
||||
|
||||
return static function (ContainerConfigurator $containerConfigurator): void {
|
||||
$services = $containerConfigurator->services();
|
||||
};
|
@ -132,7 +132,6 @@ final class SetProvider extends AbstractSetProvider
|
||||
SetList::SYLIUS_10 => __DIR__ . '/../../../config/set/sylius10.php',
|
||||
SetList::SYLIUS_102 => __DIR__ . '/../../../config/set/sylius102.php',
|
||||
SetList::SYLIUS_109 => __DIR__ . '/../../../config/set/sylius109.php',
|
||||
SetList::SYMFONY50_TYPES => __DIR__ . '/../../../config/set/symfony50-types.php',
|
||||
SetList::SYMFONY_26 => __DIR__ . '/../../../config/set/symfony26.php',
|
||||
SetList::SYMFONY_28 => __DIR__ . '/../../../config/set/symfony28.php',
|
||||
SetList::SYMFONY_30 => __DIR__ . '/../../../config/set/symfony30.php',
|
||||
@ -146,6 +145,8 @@ final class SetProvider extends AbstractSetProvider
|
||||
SetList::SYMFONY_43 => __DIR__ . '/../../../config/set/symfony43.php',
|
||||
SetList::SYMFONY_44 => __DIR__ . '/../../../config/set/symfony44.php',
|
||||
SetList::SYMFONY_50 => __DIR__ . '/../../../config/set/symfony50.php',
|
||||
SetList::SYMFONY_50_TYPES => __DIR__ . '/../../../config/set/symfony50-types.php',
|
||||
SetList::SYMFONY_PHP_CONFIG => __DIR__ . '/../../../config/set/symfony-php-config.php',
|
||||
SetList::SYMFONY_CODE_QUALITY => __DIR__ . '/../../../config/set/symfony-code-quality.php',
|
||||
SetList::SYMFONY_CONSTRUCTOR_INJECTION => __DIR__ . '/../../../config/set/symfony-constructor-injection.php',
|
||||
SetList::SYMFONY_PHPUNIT => __DIR__ . '/../../../config/set/symfony-phpunit.php',
|
||||
|
@ -574,7 +574,7 @@ final class SetList
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public const SYMFONY50_TYPES = 'symfony50-types';
|
||||
public const SYMFONY_50_TYPES = 'symfony50-types';
|
||||
|
||||
/**
|
||||
* @var string
|
||||
@ -700,4 +700,9 @@ final class SetList
|
||||
* @var string
|
||||
*/
|
||||
public const UNWRAP_COMPAT = 'unwrap-compat';
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
public const SYMFONY_PHP_CONFIG = 'symfony-php-config';
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user