| 1 | <?php |
||
| 11 | class ChainMessageConfigurator implements SwiftMessageConfiguratorInterface |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var SwiftMessageConfiguratorInterface[] |
||
| 15 | */ |
||
| 16 | private $configurators; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param SwiftMessageConfiguratorInterface[] $configurators |
||
| 20 | */ |
||
| 21 | public function __construct($configurators) |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @inheritdoc |
||
| 28 | */ |
||
| 29 | public function configure(Swift_Message $message, Delivery $delivery) |
||
| 35 | } |
||
| 36 |