| 1 | <?php |
||
| 9 | class FileTransport implements TransportInterface |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var FileTransportOptions |
||
| 13 | */ |
||
| 14 | private $fileTransportOptions; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @param FileTransportOptions $fileTransportOptions |
||
| 18 | */ |
||
| 19 | 1 | public function __construct(FileTransportOptions $fileTransportOptions) |
|
| 23 | |||
| 24 | /** |
||
| 25 | * @param MessageInterface $message |
||
| 26 | */ |
||
| 27 | 1 | public function send(MessageInterface $message): void |
|
| 37 | } |
||
| 38 |