mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Correctly importing classes in DigetAuthentication test
This commit is contained in:
parent
dbff3b8c58
commit
3e7b85dc34
1 changed files with 2 additions and 2 deletions
|
@ -17,8 +17,8 @@
|
|||
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||
*/
|
||||
|
||||
App::import('Core', 'HttpSocket');
|
||||
App::import('Lib', 'http/DigestAuthentication');
|
||||
App::uses('HttpSocket', 'Network/Http');
|
||||
App::uses('DigestAuthentication', 'Network/Http');
|
||||
|
||||
class DigestHttpSocket extends HttpSocket {
|
||||
|
||||
|
|
Loading…
Reference in a new issue