forked from rectorphp/rector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
symfony33.yaml
44 lines (38 loc) · 2.32 KB
/
symfony33.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
services:
# dependency-injection
Rector\Rector\Argument\ArgumentAdderRector:
# added default value
Symfony\Component\DependencyInjection\ContainerBuilder:
compile:
2:
name: '__unknown__'
default_value: 0
addCompilerPass:
2:
name: 'priority'
default_value: 0
Symfony\Component\DependencyInjection\Compiler\ServiceReferenceGraph:
connect:
6:
name: 'weak'
default_value: false
Rector\Symfony\Rector\Console\ConsoleExceptionToErrorEventConstantRector: ~
Rector\Renaming\Rector\Class_\RenameClassRector:
# console
'Symfony\Component\Console\Event\ConsoleExceptionEvent': 'Symfony\Component\Console\Event\ConsoleErrorEvent'
# debug
'Symfony\Component\Debug\Exception\ContextErrorException': 'ErrorException'
# dependency-injection
'Symfony\Component\DependencyInjection\DefinitionDecorator': 'Symfony\Component\DependencyInjection\ChildDefinition'
# framework bundle
'Symfony\Bundle\FrameworkBundle\DependencyInjection\Compiler\AddConsoleCommandPass': 'Symfony\Component\Console\DependencyInjection\AddConsoleCommandPass'
'Symfony\Bundle\FrameworkBundle\DependencyInjection\Compiler\SerializerPass': 'Symfony\Component\Serializer\DependencyInjection\SerializerPass'
'Symfony\Bundle\FrameworkBundle\DependencyInjection\Compiler\FormPass': 'Symfony\Component\Form\DependencyInjection\FormPass'
'Symfony\Bundle\FrameworkBundle\EventListener\SessionListener': 'Symfon\Component\HttpKernel\EventListener\SessionListener'
'Symfony\Bundle\FrameworkBundle\EventListener\TestSessionListenr': 'Symfony\Component\HttpKernel\EventListener\TestSessionListener'
'Symfony\Bundle\FrameworkBundle\DependencyInjection\Compiler\ConfigCachePass': 'Symfony\Component\Config\DependencyInjection\ConfigCachePass'
'Symfony\Bundle\FrameworkBundle\DependencyInjection\Compiler\PropertyInfoPass': 'Symfony\Component\PropertyInfo\DependencyInjection\PropertyInfoPass'
Rector\Renaming\Rector\MethodCall\RenameMethodRector:
# dependency-injection
Symfony\Component\DependencyInjection\Container:
isFrozen: 'isCompiled'