| Conditions | 1 |
| Paths | 1 |
| Total Lines | 17 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | public function htmlHead(HTMLElement &$head) |
||
| 15 | { |
||
| 16 | $head->appendContent( |
||
| 17 | HTMLElement::factory('meta', ['name' => "viewport", 'content' => "width=device-width, initial-scale=1"]) |
||
| 18 | )->appendContent( |
||
| 19 | HTMLElement::factory( |
||
| 20 | 'link', |
||
| 21 | [ |
||
| 22 | 'rel' => "stylesheet", |
||
| 23 | 'href' => "https://unpkg.com/buefy/dist/buefy.min.css", |
||
| 24 | ] |
||
| 25 | ) |
||
| 26 | )->appendContent( |
||
| 27 | HTMLElement::factory( |
||
| 28 | 'script', |
||
| 29 | [ |
||
| 30 | 'src' => "https://unpkg.com/buefy/dist/buefy.min.js", |
||
| 31 | ] |
||
| 46 |