| Conditions | 1 |
| Paths | 1 |
| Total Lines | 20 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 14 | public function htmlHead(HTMLNode &$head) |
||
| 15 | { |
||
| 16 | $head->appendContent( |
||
| 17 | [ |
||
| 18 | HTMLNode::factory( |
||
| 19 | 'script', |
||
| 20 | [ |
||
| 21 | 'src' => "https://cdn.jsdelivr.net/npm/[email protected]/dist/vuelidate.min.js" |
||
| 22 | ] |
||
| 23 | ), |
||
| 24 | HTMLNode::factory( |
||
| 25 | 'script', |
||
| 26 | [ |
||
| 27 | 'src' => "https://cdn.jsdelivr.net/npm/[email protected]/dist/validators.min.js" |
||
| 28 | ] |
||
| 29 | ), |
||
| 30 | HTMLNode::factory( |
||
| 31 | 'script', |
||
| 32 | [ ], |
||
| 33 | 'Vue.use(window.vuelidate.default)' |
||
| 34 | ) |
||
| 39 |