| 1 | <?php |
||
| 15 | abstract class AbstractSender implements SenderInterface, ContainerAwareInterface |
||
| 16 | { |
||
| 17 | use ContainerAwareTrait; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var MessageOptionsInterface|null |
||
| 21 | */ |
||
| 22 | protected $options; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param MessageOptionsInterface $options |
||
| 26 | */ |
||
| 27 | public function setOptions(MessageOptionsInterface $options) |
||
| 31 | } |
||
| 32 |