| 1 | <?php |
||
| 18 | final class Transport implements TransportInterface |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var int |
||
| 22 | */ |
||
| 23 | public $counter; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Initializes a new instance of this class. |
||
| 27 | */ |
||
| 28 | public function __construct() |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Sends the message. |
||
| 35 | * |
||
| 36 | * @param array $recipients A list with all recipients that should receive the message. |
||
| 37 | * @param Message $message The message to send. |
||
| 38 | * @return void |
||
| 39 | */ |
||
| 40 | public function send(array $recipients, Message $message): void |
||
| 44 | } |
||
| 45 |