Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
24 | 1 | public function __construct(Config $config, IRequest $httpRequest) |
|
25 | { |
||
26 | 1 | $this->config = $config; |
|
27 | 1 | $url = $httpRequest->getUrl(); |
|
28 | 1 | $this->baseUrl = $url->getBaseUrl() . $this->config->getPublicPath(); |
|
29 | 1 | $this->basePath = $url->getBasePath() . $this->config->getPublicPath(); |
|
30 | 1 | } |
|
31 | |||
68 |