mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fixing class importing in paginator test
This commit is contained in:
parent
b62c8d8ee2
commit
08bec291fd
1 changed files with 5 additions and 3 deletions
|
@ -18,9 +18,11 @@
|
|||
* @since CakePHP(tm) v 2.0
|
||||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||
*/
|
||||
App::import('Controller', 'Controller', false);
|
||||
App::import('Component', 'Paginator');
|
||||
App::import('Core', array('CakeRequest', 'CakeResponse'));
|
||||
|
||||
App::uses('Controller', 'Controller');
|
||||
App::uses('PaginatorComponent', 'Controller/Component');
|
||||
App::uses('CakeRequest', 'Network');
|
||||
App::uses('CakeResponse', 'Network');
|
||||
|
||||
/**
|
||||
* PaginatorTestController class
|
||||
|
|
Loading…
Reference in a new issue