Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions config/rector/sets/cakephp60.php
Original file line number Diff line number Diff line change
Expand Up @@ -243,12 +243,9 @@
'I18n' => [
'Cake\I18n\MessagesFileLoader' => ['_name', '_plugin', '_locale', '_extension'],
'Cake\I18n\ChainMessagesLoader' => ['_loaders'],
// Can't rename _toStringFormat as it conflicts with ChronosDate::toStringFormat
'Cake\I18n\Date' => ['_jsonEncodeFormat'],
// Can't rename _toStringFormat as it conflicts with Chronos::toStringFormat
'Cake\I18n\DateTime' => ['_jsonEncodeFormat'],
// Can't rename _toStringFormat as it conflicts with ChronosTime::toStringFormat
'Cake\I18n\Time' => ['_jsonEncodeFormat'],
'Cake\I18n\Date' => ['_toStringFormat', '_jsonEncodeFormat'],
'Cake\I18n\DateTime' => ['_toStringFormat', '_jsonEncodeFormat'],
'Cake\I18n\Time' => ['_toStringFormat', '_jsonEncodeFormat'],
'Cake\I18n\I18n' => ['_collection', '_defaultLocale'],
'Cake\I18n\Number' => ['_formatters', '_defaultCurrency', '_defaultCurrencyFormat'],
'Cake\I18n\PluralRules' => ['_rulesMap'],
Expand Down
Loading