| 1 | <?php |
||
| 9 | class TagParser implements ChildParserInterface |
||
| 10 | { |
||
| 11 | private $line; |
||
| 12 | |||
| 13 | private $transformer; |
||
| 14 | |||
| 15 | private $repeatable; |
||
| 16 | |||
| 17 | public function __construct(LineInterface $line, TransformerInterface $transformer = null, $repeatable = false) |
||
| 23 | |||
| 24 | public function parse(LinesInterface $lines) |
||
| 35 | |||
| 36 | public function supports(LineInterface $line) |
||
| 40 | |||
| 41 | public function isRepeatable() |
||
| 45 | } |
||
| 46 |