| 1 | <?php |
||
| 8 | class Generator |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var FormatterInterface |
||
| 12 | */ |
||
| 13 | private $formatter; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * Generator constructor. |
||
| 17 | * |
||
| 18 | * @param FormatterInterface $formatter |
||
| 19 | */ |
||
| 20 | public function __construct(FormatterInterface $formatter) |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param ElementInterface $element |
||
| 27 | * @param Upgrade $context |
||
| 28 | * |
||
| 29 | * @return string |
||
| 30 | */ |
||
| 31 | public function generate(ElementInterface $element, Upgrade $context) |
||
| 37 | } |
||
| 38 |