| 1 | <?php |
||
| 16 | class Bundler implements ImporterInterface |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * Importers fetched from bundle file. |
||
| 20 | * |
||
| 21 | * @var ImporterInterface[] |
||
| 22 | */ |
||
| 23 | protected $importers = []; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param Supervisor $supervisor |
||
| 27 | * @param string $path |
||
| 28 | * @param array $token |
||
| 29 | */ |
||
| 30 | public function __construct(Supervisor $supervisor, $path, array $token = []) |
||
| 39 | |||
| 40 | /** |
||
| 41 | * {@inheritdoc} |
||
| 42 | */ |
||
| 43 | public function importable($element, array $token) |
||
| 53 | |||
| 54 | /** |
||
| 55 | * {@inheritdoc} |
||
| 56 | */ |
||
| 57 | public function resolvePath($element, array $token) |
||
| 67 | } |