mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Ensure Object is autoloaded.
When Object was renamed to CakeObject we broke behavior where plugins and app code were relying on Object being configured in the autoloader automatically. Refs cakephp/debug_kit#450
This commit is contained in:
parent
35d04ecb3d
commit
57bc0f9c45
1 changed files with 1 additions and 0 deletions
|
@ -146,6 +146,7 @@ App::uses('Configure', 'Core');
|
|||
App::uses('CakePlugin', 'Core');
|
||||
App::uses('Cache', 'Cache');
|
||||
App::uses('CakeObject', 'Core');
|
||||
App::uses('Object', 'Core');
|
||||
App::uses('Multibyte', 'I18n');
|
||||
|
||||
App::$bootstrapping = true;
|
||||
|
|
Loading…
Reference in a new issue