| 1 | <?php |
||
| 17 | class Stopper implements ImporterInterface |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * Html tag name. |
||
| 21 | * |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | protected $element = ''; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param string $element |
||
| 28 | */ |
||
| 29 | public function __construct($element) |
||
| 33 | |||
| 34 | /** |
||
| 35 | * {@inheritdoc} |
||
| 36 | */ |
||
| 37 | public function importable($element, array $token) |
||
| 46 | |||
| 47 | /** |
||
| 48 | * {@inheritdoc} |
||
| 49 | */ |
||
| 50 | public function resolvePath($element, array $token) |
||
| 54 | } |