composer package updates
[openemr.git] / vendor / zendframework / zend-mail / src / Address / AddressInterface.php
blobaccffea3bd26b155d5d282dab02de04a63b278ce
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\Address;
10 interface AddressInterface
12 /**
13 * Retrieve email
15 * @return string
17 public function getEmail();
19 /**
20 * Retrieve name
22 * @return string
24 public function getName();
26 /**
27 * String representation of address
29 * @return string
31 public function toString();