mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Merge pull request #8930 from cakephp/issue-8929
Add missing uses() call.
This commit is contained in:
commit
571b33e1f2
3 changed files with 3 additions and 1 deletions
|
@ -15,6 +15,7 @@
|
|||
* @since CakePHP(tm) v 2.0.0
|
||||
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
||||
*/
|
||||
App::uses('AbstractTransport', 'Network/Email');
|
||||
|
||||
/**
|
||||
* Debug Transport class, useful for emulate the email sending process and inspect the resulted
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
* @since CakePHP(tm) v 2.0.0
|
||||
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
||||
*/
|
||||
App::uses('AbstractTransport', 'Network/Email');
|
||||
|
||||
/**
|
||||
* Send mail using mail() function
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
* @since CakePHP(tm) v 2.0.0
|
||||
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
||||
*/
|
||||
|
||||
App::uses('AbstractTransport', 'Network/Email');
|
||||
App::uses('CakeSocket', 'Network');
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue