1 | <?php |
||
12 | 1 | class Formatter implements IFormatter |
|
13 | { |
||
14 | /** @var Config */ |
||
15 | private $config; |
||
16 | |||
17 | /** @var string */ |
||
18 | private $baseUrl; |
||
19 | |||
20 | /** @var string */ |
||
21 | private $basePath; |
||
22 | |||
23 | |||
24 | 1 | public function __construct(Config $config, IRequest $httpRequest) |
|
31 | |||
32 | |||
33 | 1 | public function format(Asset $asset, string $format = '%url%', bool $absolute = false): string |
|
67 | } |
||
68 |