Merge pull request #8930 from cakephp/issue-8929

Add missing uses() call.
This commit is contained in:
José Lorenzo Rodríguez 2016-06-03 08:16:27 +02:00
commit 571b33e1f2
3 changed files with 3 additions and 1 deletions

View file

@ -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

View file

@ -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

View file

@ -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');
/**