rector/config/set/shopware/shopware55.yaml
Joseph Bielawski 08d792dda2 Remove --with-style in favour of mentioning ECS
List reasons why Rector doesn't work well with coding standards instead
2019-07-09 17:05:10 +02:00

21 lines
774 B
YAML

# See https://github.com/shopware/shopware/blob/5.5/UPGRADE-5.5.md
services:
Rector\Rector\MagicDisclosure\GetAndSetToMethodCallRector:
Enlight_View_Default:
get: 'getAssign'
set: 'assign'
Enlight_Components_Session_Namespace:
get: 'get'
set: 'offsetSet'
Shopware_Components_Config:
get: 'offsetGet'
set: 'offsetSet'
Rector\Rector\MagicDisclosure\UnsetAndIssetToMethodCallRector:
Enlight_Components_Session_Namespace:
isset: 'offsetExists'
unset: 'offsetUnset'
Shopware_Components_Config:
isset: 'offsetExists'
unset: 'offsetUnset'
Rector\Shopware\Rector\ClassConstFetch\ShopwareVersionConstsRector: ~