Conditions | 3 |
Paths | 4 |
Total Lines | 13 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
34 | protected function attrs(): array |
||
35 | { |
||
36 | $attrs = parent::attrs(); |
||
37 | $attrs['shortName'] = sprintf(':%s:', $this->shortName); |
||
38 | |||
39 | if (null !== $this->id) { |
||
40 | $attrs['id'] = $this->id; |
||
41 | } |
||
42 | if (null !== $this->text) { |
||
43 | $attrs['text'] = $this->text; |
||
44 | } |
||
45 | |||
46 | return $attrs; |
||
47 | } |
||
49 |