1 | <?php |
||
36 | class SwiftMailer implements SwiftMailerConfigurationInterface |
||
|
|||
37 | { |
||
38 | |||
39 | /** |
||
40 | * The trait that provides parameter configuration functionality. |
||
41 | * |
||
42 | * @var \TechDivision\Import\Configuration\Jms\Configuration\ParamsTrait |
||
43 | */ |
||
44 | use ParamsTrait; |
||
45 | |||
46 | /** |
||
47 | * The DI ID used to create the swift mailer instance. |
||
48 | * |
||
49 | * @var string |
||
50 | * @Type("string") |
||
51 | */ |
||
52 | protected $id; |
||
53 | |||
54 | /** |
||
55 | * The swift mailer transport configuration to use. |
||
56 | * |
||
57 | * @var \TechDivision\Import\Configuration\Jms\Configuration\SwiftMailer\Transport |
||
58 | * @Type("TechDivision\Import\Configuration\Jms\Configuration\SwiftMailer\Transport") |
||
59 | */ |
||
60 | protected $transport; |
||
61 | |||
62 | /** |
||
63 | * Return's the DI ID used to create the swift mailer instance. |
||
64 | * |
||
65 | * @return string The DI ID |
||
66 | */ |
||
67 | public function getId() |
||
71 | |||
72 | /** |
||
73 | * Return's the swift mailer transport configuration to use. |
||
74 | * |
||
75 | * @return \TechDivision\Import\Configuration\Jms\Configuration\SwiftMailer\Transport The transport configuration to use |
||
76 | */ |
||
77 | public function getTransport() |
||
81 | } |
||
82 |