Conditions | 3 |
Paths | 4 |
Total Lines | 13 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
49 | protected function attrs(): array |
||
50 | { |
||
51 | $attrs = parent::attrs(); |
||
52 | $attrs['shortName'] = sprintf(':%s:', $this->shortName); |
||
53 | |||
54 | if (null !== $this->id) { |
||
55 | $attrs['id'] = $this->id; |
||
56 | } |
||
57 | if (null !== $this->text) { |
||
58 | $attrs['text'] = $this->text; |
||
59 | } |
||
60 | |||
61 | return $attrs; |
||
62 | } |
||
64 |