| Conditions | 5 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 30 |
| Changes | 1 | ||
| Bugs | 1 | Features | 1 |
| 1 | <?php |
||
| 29 | public function renderHeaderCell() |
||
| 30 | { |
||
| 31 | if (null !== $this->grid->filterModel && false === $this->filter && $this->rowSpanNoFilterHeaders = true && |
||
| 32 | $this->grid->filterPosition === GridView::FILTER_POS_BODY) { |
||
| 33 | $this->headerOptions['rowspan'] = 2; |
||
| 34 | } |
||
| 35 | |||
| 36 | return parent::renderHeaderCell(); |
||
| 37 | } |
||
| 38 | |||
| 54 |