8 lines
133 B
PHP
8 lines
133 B
PHP
|
<?php
|
||
|
|
||
|
namespace common\services\messagesDeliver;
|
||
|
|
||
|
interface IMessageRecipient
|
||
|
{
|
||
|
public function getRecipientAddress(): string;
|
||
|
}
|