rector/config/set/cakephp36.php
Tomas Votruba 0993088cda
[SymfonyPhpConfig] Use Symplify package instead + simplify set validation (#4694)
* [SymfonyPhpConfig] Use Symplify package instead

* [SymfonyPhpConfig] Drop forgotten custom-jobs Rectors

* [CI] simplify set validation

* from inline functions to Static class

* cleanup

* decouple rector.php to allow static analysis and coding standards
2020-11-26 16:44:27 +00:00

61 lines
3.8 KiB
PHP

<?php
declare(strict_types=1);
use Rector\Renaming\Rector\MethodCall\RenameMethodRector;
use Rector\Renaming\Rector\Name\RenameClassRector;
use Rector\Renaming\ValueObject\MethodCallRename;
use Rector\Transform\Rector\Assign\PropertyToMethodRector;
use Rector\Transform\ValueObject\PropertyToMethod;
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
use Symplify\SymfonyPhpConfig\ValueObjectInliner;
return static function (ContainerConfigurator $containerConfigurator): void {
$services = $containerConfigurator->services();
# source: https://book.cakephp.org/3.0/en/appendices/3-6-migration-guide.html
$services->set(RenameMethodRector::class)
->call('configure', [[
RenameMethodRector::METHOD_CALL_RENAMES => ValueObjectInliner::inline([
new MethodCallRename('Cake\ORM\Table', 'association', 'getAssociation'),
new MethodCallRename('Cake\Validation\ValidationSet', 'isPresenceRequired', 'requirePresence'),
new MethodCallRename('Cake\Validation\ValidationSet', 'isEmptyAllowed', 'allowEmpty'),
]),
]]);
$services->set(PropertyToMethodRector::class)
->call('configure', [[
PropertyToMethodRector::PROPERTIES_TO_METHOD_CALLS => ValueObjectInliner::inline([
new PropertyToMethod('Cake\Controller\Controller', 'name', 'getName', 'setName'),
new PropertyToMethod('Cake\Controller\Controller', 'plugin', 'getPlugin', 'setPlugin'),
new PropertyToMethod('Cake\Form\Form', 'validator', 'getValidator', 'setValidator'),
]),
]]);
$services->set(RenameClassRector::class)
->call('configure', [[
RenameClassRector::OLD_TO_NEW_CLASSES => [
'Cake\Cache\Engine\ApcEngine' => 'Cake\Cache\Engine\ApcuEngine',
'Cake\Network\Exception\BadRequestException' => 'Cake\Http\Exception\BadRequestException',
'Cake\Network\Exception\ConflictException' => 'Cake\Http\Exception\ConflictException',
'Cake\Network\Exception\ForbiddenException' => 'Cake\Http\Exception\ForbiddenException',
'Cake\Network\Exception\GoneException' => 'Cake\Http\Exception\GoneException',
'Cake\Network\Exception\HttpException' => 'Cake\Http\Exception\HttpException',
'Cake\Network\Exception\InternalErrorException' => 'Cake\Http\Exception\InternalErrorException',
'Cake\Network\Exception\InvalidCsrfTokenException' => 'Cake\Http\Exception\InvalidCsrfTokenException',
'Cake\Network\Exception\MethodNotAllowedException' => 'Cake\Http\Exception\MethodNotAllowedException',
'Cake\Network\Exception\NotAcceptableException' => 'Cake\Http\Exception\NotAcceptableException',
'Cake\Network\Exception\NotFoundException' => 'Cake\Http\Exception\NotFoundException',
'Cake\Network\Exception\NotImplementedException' => 'Cake\Http\Exception\NotImplementedException',
'Cake\Network\Exception\ServiceUnavailableException' => 'Cake\Http\Exception\ServiceUnavailableException',
'Cake\Network\Exception\UnauthorizedException' => 'Cake\Http\Exception\UnauthorizedException',
'Cake\Network\Exception\UnavailableForLegalReasonsException' => 'Cake\Http\Exception\UnavailableForLegalReasonsException',
'Cake\Network\Session' => 'Cake\Http\Session',
'Cake\Network\Session\DatabaseSession' => 'Cake\Http\Session\DatabaseSession',
'Cake\Network\Session\CacheSession' => 'Cake\Http\Session\CacheSession',
'Cake\Network\CorsBuilder' => 'Cake\Http\CorsBuilder',
'Cake\View\Widget\WidgetRegistry' => 'Cake\View\Widget\WidgetLocator',
],
]]);
};