mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Fixing some package locations and a parse error
This commit is contained in:
parent
3c6f85254c
commit
465330a96d
3 changed files with 3 additions and 3 deletions
|
@ -17,7 +17,7 @@
|
|||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||
*/
|
||||
|
||||
App::uses('Dispatcher', 'Routing')
|
||||
App::uses('Dispatcher', 'Routing');
|
||||
App::uses('CakeRequest', 'Network');
|
||||
|
||||
class CakeRequestTestCase extends CakeTestCase {
|
||||
|
|
|
@ -17,7 +17,8 @@
|
|||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||
*/
|
||||
|
||||
App::uses('HttpSocket', 'Network');
|
||||
App::uses('HttpSocket', 'Network/Http');
|
||||
App::uses('HttpResponse', 'Network/Http');
|
||||
|
||||
/**
|
||||
* TestAuthentication class
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
<?php
|
||||
|
||||
class TestDriver extends TestSource {
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue