mirror of
https://github.com/jbcr/Sylius.git
synced 2026-03-24 00:42:08 +01:00
14 lines
227 B
PHP
14 lines
227 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Rector\Config\RectorConfig;
|
|
use Rector\Set\ValueObject\LevelSetList;
|
|
|
|
return static function (RectorConfig $config): void
|
|
{
|
|
$config->sets([
|
|
LevelSetList::UP_TO_PHP_82
|
|
]);
|
|
};
|