Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
17 | 1 | protected function getAllowedAttributes() |
|
18 | { |
||
19 | $tdAllowedAttributes = array( |
||
20 | 1 | '/^colspan$/i' => Attribute::INT, |
|
21 | '/^rowspan$/i' => Attribute::INT, |
||
22 | '/^headers$/i' => Attribute::CS_STRING |
||
23 | ); |
||
24 | |||
25 | 1 | return array_merge( |
|
26 | 1 | $tdAllowedAttributes, |
|
27 | 1 | parent::getAllowedAttributes() |
|
28 | ); |
||
29 | } |
||
30 | |||
44 |