1 | <?php |
||
9 | class HardBreakConverter implements ConverterInterface, ConfigurationAwareInterface |
||
10 | { |
||
11 | /** |
||
12 | * @var Configuration |
||
13 | */ |
||
14 | 6 | protected $config; |
|
15 | |||
16 | 6 | /** |
|
17 | * @param Configuration $config |
||
18 | */ |
||
19 | public function setConfig(Configuration $config) |
||
23 | |||
24 | 78 | /** |
|
25 | * @param ElementInterface $element |
||
26 | * |
||
27 | * @return string |
||
28 | */ |
||
29 | public function convert(ElementInterface $element) |
||
33 | |||
34 | /** |
||
35 | * @return string[] |
||
36 | */ |
||
37 | public function getSupportedTags() |
||
41 | } |
||
42 |