| Server IP : 85.214.239.14 / Your IP : 216.73.216.210 Web Server : Apache/2.4.65 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 8.2.29 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/2/root/proc/3/cwd/var/www/wordpress/wp-content/plugins/really-simple-ssl/ |
Upload File : |
<?php
declare(strict_types=1);
use Rector\Config\RectorConfig;
use Rector\Transform\Rector\ClassMethod\ReturnTypeWillChangeRector;
return RectorConfig::configure()
->withPaths([
// __DIR__ . '/assets',
// __DIR__ . '/automation',
// __DIR__ . '/languages',
// __DIR__ . '/lets-encrypt',
// __DIR__ . '/lib',
// __DIR__ . '/mailer',
// __DIR__ . '/modal',
// __DIR__ . '/onboarding',
// __DIR__ . '/placeholders',
__DIR__ . '/pro/security/wordpress/two-fa',
// __DIR__ . '/progress',
__DIR__ . '/security/wordpress/two-fa',
// __DIR__ . '/settings',
// __DIR__ . '/tests',
// __DIR__ . '/upgrade',
])
// uncomment to reach your current PHP version
// ->withPhpSets()
->withTypeCoverageLevel(0)
->withImportNames(true)
// ->withPhp74Sets()
->withDeadCodeLevel(1)
->withCodeQualityLevel(1)
->withRules([
ReturnTypeWillChangeRector::class,
\Rector\DeadCode\Rector\ClassMethod\RemoveUselessParamTagRector::class,
])
;