Conditions | 3 |
Paths | 4 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
21 | 84 | public function __construct(string $url, ?string $label = null, ?string $title = null) |
|
22 | { |
||
23 | 84 | parent::__construct($url); |
|
24 | |||
25 | 84 | if (!empty($label)) { |
|
26 | 6 | $this->appendChild(new Text($label)); |
|
27 | } |
||
28 | |||
29 | 84 | if (!empty($title)) { |
|
30 | 39 | $this->data['title'] = $title; |
|
31 | } |
||
32 | 84 | } |
|
33 | } |
||
34 |