Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
12 | public function getValue() |
||
13 | { |
||
14 | return [ |
||
15 | 'range' => "concat({$this->stepSize} * floor({$this->column}/{$this->stepSize}), ' - ', |
||
16 | {$this->stepSize} * floor({$this->column}/{$this->stepSize}) + {$this->stepSize} - 1)", |
||
17 | 'minVal' => "{$this->stepSize} * floor({$this->column}/{$this->stepSize})", |
||
18 | ]; |
||
21 |