| 1 | <?php |
||
| 17 | class Prefixer implements ImporterInterface |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @var string |
||
| 21 | */ |
||
| 22 | private $prefix = ''; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var string |
||
| 26 | */ |
||
| 27 | private $target = ''; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param string $prefix |
||
| 31 | * @param string $target |
||
| 32 | */ |
||
| 33 | public function __construct($prefix, $target) |
||
| 38 | |||
| 39 | /** |
||
| 40 | * {@inheritdoc} |
||
| 41 | */ |
||
| 42 | public function importable($element, array $token) |
||
| 48 | |||
| 49 | /** |
||
| 50 | * {@inheritdoc} |
||
| 51 | */ |
||
| 52 | public function resolvePath($element, array $token) |
||
| 58 | } |