Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 1 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types = 1); |
||
20 | public function enqueue_script( |
||
21 | string $handle, |
||
22 | string $src, |
||
23 | string $file = '', |
||
24 | array $dependencies = [], |
||
25 | bool $in_footer = false |
||
26 | ): void { |
||
27 | wp_enqueue_script( $handle, $src, $dependencies, $this->generate_file_version( $file ), $in_footer ); |
||
28 | } |
||
42 |