composer package updates
[openemr.git] / vendor / zendframework / zend-mail / src / Transport / Null.php
blobeb2275e3f996b5dc06f14ccc4d88f3e6d993169c
1 <?php
2 /**
3 * @see https://github.com/zendframework/zend-mail for the canonical source repository
4 * @copyright Copyright (c) 2005-2018 Zend Technologies USA Inc. (https://www.zend.com)
5 * @license https://github.com/zendframework/zend-mail/blob/master/LICENSE.md New BSD License
6 */
8 namespace Zend\Mail\Transport;
10 /**
11 * Stub class for backwards compatibility.
13 * Since PHP 7 adds "null" as a reserved keyword, we can no longer have a class
14 * named that and retain PHP 7 compatibility. The original class has been
15 * renamed to "InMemory", and this class is now an extension of it. It raises an
16 * E_USER_DEPRECATED to warn users to migrate.
18 * @deprecated
20 class Null extends InMemory
22 public function __construct()
24 trigger_error(
25 sprintf(
26 'The class %s has been deprecated; please use %s\\InMemory',
27 __CLASS__,
28 __NAMESPACE__
30 E_USER_DEPRECATED