| 1 | <?php |
||
| 9 | class CssInlinerPlugin implements Swift_Events_SendListener |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var CssToInlineStyles |
||
| 13 | */ |
||
| 14 | private $converter; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @param CssToInlineStyles $converter |
||
| 18 | */ |
||
| 19 | 1 | public function __construct(CssToInlineStyles $converter = null) |
|
| 27 | |||
| 28 | /** |
||
| 29 | * @param Swift_Events_SendEvent $event |
||
| 30 | */ |
||
| 31 | 3 | public function beforeSendPerformed(Swift_Events_SendEvent $event) |
|
| 45 | |||
| 46 | /** |
||
| 47 | * @param Swift_Events_SendEvent $event |
||
| 48 | */ |
||
| 49 | 1 | public function sendPerformed(Swift_Events_SendEvent $event) |
|
| 53 | } |
||
| 54 |