| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | public function __construct($column, $arguments) |
||
| 12 | { |
||
| 13 | $this->column['start'] = $column; |
||
| 14 | $this->column['end'] = $arguments[0]; |
||
| 15 | |||
| 16 | array_shift($arguments); |
||
| 17 | $this->label = $this->formatLabel($arguments); |
||
| 18 | $this->id = $this->formatId($this->column); |
||
| 19 | |||
| 20 | $this->options(['format' => $this->format]); |
||
| 21 | } |
||
| 22 | |||
| 53 |