forked from rectorphp/rector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcakephp35.yaml
90 lines (87 loc) · 3.15 KB
/
cakephp35.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# source: https://book.cakephp.org/3.0/en/appendices/3-5-migration-guide.html
services:
Rector\Renaming\Rector\Class_\RenameClassRector:
$oldToNewClasses:
Cake\Http\Client\CookieCollection: 'Cake\Http\Cookie\CookieCollection'
Cake\Console\ShellDispatcher: 'Cake\Console\CommandRunner'
Rector\Renaming\Rector\MethodCall\RenameMethodRector:
$oldToNewMethodsByClass:
Cake\Database\Schema\TableSchema:
column: 'getColumn'
constraint: 'getConstraint'
index: 'getIndex'
Rector\CakePHP\Rector\MethodCall\ModalToGetSetRector:
$methodNamesByTypes:
Cake\Cache\Cache:
config: null
registry: null
Cake\Console\Shell:
io: null
Cake\Console\ConsoleIo:
outputAs: null
Cake\Console\ConsoleOutput:
outputAs: null
Cake\Database\Connection:
logger: null
Cake\Database\TypedResultInterface:
returnType: null
Cake\Database\TypedResultTrait:
returnType: null
Cake\Database\Log\LoggingStatement:
logger: null
Cake\Datasource\ModelAwareTrait:
modelType: null
Cake\Database\Query:
valueBinder:
get: 'getValueBinder'
set: 'valueBinder'
Cake\Database\Schema\TableSchema:
columnType: null
Cake\Datasource\QueryTrait:
eagerLoaded:
get: 'isEagerLoaded'
set: 'eagerLoaded'
Cake\Event\EventDispatcherInterface:
eventManager: null
Cake\Event\EventDispatcherTrait:
eventManager: null
Cake\Error\Debugger:
outputAs:
get: 'getOutputFormat'
set: 'setOutputFormat'
Cake\Http\ServerRequest:
env:
get: 'getEnv'
set: 'withEnv'
charset:
get: 'getCharset'
set: 'withCharset'
Cake\I18n\I18n:
locale: null
translator: null
defaultLocale: null
defaultFormatter: null
Cake\ORM\Association\BelongsToMany:
sort: null
Cake\ORM\LocatorAwareTrait:
tableLocator: null
Cake\ORM\Table:
validator: null
Cake\Routing\RouteBuilder:
extensions: null
routeClass: null
Cake\Routing\RouteCollection:
extensions: null
Cake\TestSuite\TestFixture:
schema: null
Cake\Utility\Security:
salt: null
Cake\View\View:
template: null
layout: null
theme: null
templatePath: null
layoutPath: null
autoLayout:
get: 'isAutoLayoutEnabled'
set: 'enableAutoLayout'