Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
16 | public function __construct(string $staticUrl, bool $registerServiceWorker) |
||
17 | { |
||
18 | $this->js[] = [$staticUrl . '/bundle.js', WebView::POSITION_END, 'type' => 'module']; |
||
19 | |||
20 | if ($registerServiceWorker) { |
||
21 | $this->js[] = $staticUrl . '/registerSW.js'; |
||
22 | } |
||
23 | |||
24 | $this->css[] = $staticUrl . '/bundle.css'; |
||
25 | } |
||
27 |