Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
22 | public function __construct(IView $view) |
||
23 | { |
||
24 | if ((new KernelInjector)->build()->isDebug()) { |
||
25 | $this->js[] = '/jquery.js'; |
||
26 | } else { |
||
27 | $this->js[] = '/jquery.min.js'; |
||
28 | } |
||
29 | |||
30 | $this->sourcePath = (new KernelInjector)->build()->getAppDir() . '/../vendor/components/jquery'; |
||
31 | |||
32 | parent::__construct($view); |
||
33 | } |
||
34 | } |
||
35 |