1 | <?php |
||
10 | final class DkimV1SignedTransport implements TransportInterface |
||
11 | { |
||
12 | /** |
||
13 | * @var TransportInterface |
||
14 | */ |
||
15 | private $transport; |
||
16 | /** |
||
17 | * @var HeaderV1Factory |
||
18 | */ |
||
19 | private $headerFactory; |
||
20 | /** |
||
21 | * @var string |
||
22 | */ |
||
23 | private $domain; |
||
24 | /** |
||
25 | * @var string |
||
26 | */ |
||
27 | private $selector; |
||
28 | |||
29 | /** |
||
30 | * DkimSignedTransport constructor. |
||
31 | * @param TransportInterface $transport |
||
32 | * @param HeaderV1Factory $headerFactory |
||
33 | * @param string $domain |
||
34 | * @param string $selector |
||
35 | */ |
||
36 | public function __construct( |
||
47 | |||
48 | /** |
||
49 | * @param MessageInterface $message |
||
50 | * @return void |
||
51 | */ |
||
52 | public function send(MessageInterface $message): void |
||
64 | } |