mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-09-04 18:42:40 +00:00
Fixing several errors when running the testsuite
This commit is contained in:
parent
4389764050
commit
8e5bd76752
23 changed files with 37 additions and 24 deletions
|
@ -20,7 +20,7 @@
|
|||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||
*/
|
||||
|
||||
App::uses('Router', 'Core');
|
||||
App::uses('Router', 'Routing');
|
||||
|
||||
/**
|
||||
* Abstract base class for all other Helpers in CakePHP.
|
||||
|
|
|
@ -23,7 +23,8 @@
|
|||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||
*/
|
||||
|
||||
App::uses('JsHelper', 'Helper');
|
||||
App::uses('JsHelper', 'View/Helper');
|
||||
App::uses('JsBaseEngineHelper', 'View/Helper');
|
||||
|
||||
class JqueryEngineHelper extends JsBaseEngineHelper {
|
||||
/**
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
* @since CakePHP(tm) v 2.0
|
||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||
*/
|
||||
App::uses('ObjectCollection', 'Core');
|
||||
App::uses('ObjectCollection', 'Utility');
|
||||
|
||||
class HelperCollection extends ObjectCollection {
|
||||
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
* Included libraries.
|
||||
*/
|
||||
App::uses('HelperCollection', 'View');
|
||||
App::uses('Router', 'Routing');
|
||||
|
||||
/**
|
||||
* View, the V in the MVC triad.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue