|
103 | 103 | 'Controller' => [ |
104 | 104 | 'Cake\Controller\ComponentRegistry' => ['_Controller'], |
105 | 105 | 'Cake\Controller\Controller' => ['_components'], |
| 106 | + 'Cake\Controller\Component' => ['_registry'], |
106 | 107 | ], |
107 | 108 | 'Core' => [ |
108 | 109 | 'Cake\Core\Configure\Engine\IniConfig' => ['_extension', '_section'], |
|
234 | 235 | 'Cake\Http\Session\CacheSession' => ['_options'], |
235 | 236 | ], |
236 | 237 |
|
| 238 | + 'I18n' => [ |
| 239 | + 'Cake\I18n\MessagesFileLoader' => ['_name', '_plugin', '_locale', '_extension'], |
| 240 | + 'Cake\I18n\ChainMessagesLoader' => ['_loaders'], |
| 241 | + // Can't rename _toStringFormat as it conflicts with ChronosDate::toStringFormat |
| 242 | + 'Cake\I18n\Date' => ['_jsonEncodeFormat'], |
| 243 | + // Can't rename _toStringFormat as it conflicts with Chronos::toStringFormat |
| 244 | + 'Cake\I18n\DateTime' => ['_jsonEncodeFormat'], |
| 245 | + // Can't rename _toStringFormat as it conflicts with ChronosTime::toStringFormat |
| 246 | + 'Cake\I18n\Time' => ['_jsonEncodeFormat'], |
| 247 | + 'Cake\I18n\I18n' => ['_collection', '_defaultLocale'], |
| 248 | + 'Cake\I18n\Number' => ['_formatters', '_defaultCurrency', '_defaultCurrencyFormat'], |
| 249 | + 'Cake\I18n\TranslatorRegistry' => ['_loaders', '_defaultFormatter', '_useFallback', '_cacher'], |
| 250 | + ], |
| 251 | + |
237 | 252 | 'ORM' => [ |
238 | 253 | 'Cake\ORM\Association' => [ |
239 | 254 | '_name', '_className', '_bindingKey', '_foreignKey', '_conditions', |
|
0 commit comments