Skip to content

Commit

Permalink
Ensure Object is autoloaded.
Browse files Browse the repository at this point in the history
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
  • Loading branch information
markstory committed Sep 23, 2016
1 parent 35d04ec commit 57bc0f9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/Cake/bootstrap.php
Expand Up @@ -146,6 +146,7 @@
App::uses('CakePlugin', 'Core');
App::uses('Cache', 'Cache');
App::uses('CakeObject', 'Core');
App::uses('Object', 'Core');
App::uses('Multibyte', 'I18n');

App::$bootstrapping = true;
Expand Down

0 comments on commit 57bc0f9

Please sign in to comment.