| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 21 | public function htmlHead(HTMLElement &$head) |
||
| 22 | { |
||
| 23 | $head->appendContent( |
||
| 24 | HTMLElement::factory( |
||
| 25 | 'script', |
||
| 26 | [ |
||
| 27 | 'src' => "https://cdn.quilljs.com/1.3.6/quill.min.js" |
||
| 28 | ] |
||
| 29 | ) |
||
| 30 | )->appendContent( |
||
| 31 | HTMLElement::factory( |
||
| 32 | 'link', |
||
| 33 | [ |
||
| 34 | 'rel' => "stylesheet", |
||
| 35 | 'href' => "https://cdn.quilljs.com/1.3.6/quill.snow.css" |
||
| 36 | ] |
||
| 41 |