mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-26 03:58:45 +02:00
N°4307 Replace SwiftMailer with Laminas-mail
This commit is contained in:
33
lib/laminas/laminas-mail/src/Address/AddressInterface.php
Normal file
33
lib/laminas/laminas-mail/src/Address/AddressInterface.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @see https://github.com/laminas/laminas-mail for the canonical source repository
|
||||
* @copyright https://github.com/laminas/laminas-mail/blob/master/COPYRIGHT.md
|
||||
* @license https://github.com/laminas/laminas-mail/blob/master/LICENSE.md New BSD License
|
||||
*/
|
||||
|
||||
namespace Laminas\Mail\Address;
|
||||
|
||||
interface AddressInterface
|
||||
{
|
||||
/**
|
||||
* Retrieve email
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getEmail();
|
||||
|
||||
/**
|
||||
* Retrieve name, if any
|
||||
*
|
||||
* @return null|string
|
||||
*/
|
||||
public function getName();
|
||||
|
||||
/**
|
||||
* String representation of address
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function toString();
|
||||
}
|
||||
Reference in New Issue
Block a user