BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
www
/
app.imagivibe.com
/
vendor
/
paddlehq
/
paddle-php-sdk
📤 Upload
📝 New File
📁 New Folder
Close
Editing: rector.php
<?php declare(strict_types=1); use Rector\Config\RectorConfig; use Rector\Php81\Rector\Class_\MyCLabsClassToEnumRector; use Rector\Php81\Rector\MethodCall\MyCLabsMethodCallToEnumConstRector; use Rector\Set\ValueObject\LevelSetList; use Rector\Set\ValueObject\SetList; return static function (RectorConfig $rectorConfig): void { $rectorConfig->sets([ LevelSetList::UP_TO_PHP_81, SetList::CODE_QUALITY, SetList::DEAD_CODE, SetList::TYPE_DECLARATION, ]); $rectorConfig->paths([ __DIR__ . '/src', __DIR__ . '/tests', ]); $rectorConfig->skip([ '*.json', '*/Fixture/*', MyCLabsClassToEnumRector::class, MyCLabsMethodCallToEnumConstRector::class, ]); $rectorConfig->importNames(); $rectorConfig->importShortClasses(false); };
Save
Cancel