mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-09-02 17:42:41 +00:00
Preventing loading the ConnectionManager from triggering reloading the Model file
This commit is contained in:
parent
aaf348320b
commit
3b1664b7dd
1 changed files with 2 additions and 1 deletions
|
@ -26,7 +26,8 @@
|
|||
App::import('Core', array(
|
||||
'ClassRegistry', 'Overloadable', 'Validation', 'Set', 'String'
|
||||
));
|
||||
App::import('Model', array('ModelBehavior', 'ConnectionManager'), false);
|
||||
App::import('Model', 'ModelBehavior', false);
|
||||
App::import('Model', 'ConnectionManager', false);
|
||||
|
||||
/**
|
||||
* Object-relational mapper.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue