| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | public function mergeHiddenAttributes(array $hidden_attributes, bool $merge_hidden = true) |
||
| 24 | { |
||
| 25 | $hidden_attributes = $merge_hidden |
||
| 26 | ? array_merge($this->getAncestorProperty('hidden_attributes'), $hidden_attributes) |
||
|
|
|||
| 27 | : $hidden_attributes; |
||
| 28 | |||
| 29 | $this->trait_hidden_attributes = array_merge($this->trait_hidden_attributes, $hidden_attributes); |
||
| 30 | |||
| 31 | $this->bootHiddenAttributes(); |
||
| 32 | |||
| 33 | return $this; |
||
| 34 | } |
||
| 57 |