| Total Complexity | 2 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 27 | class Column extends ValueObject implements \JsonSerializable |
||
| 28 | { |
||
| 29 | protected $data; |
||
| 30 | protected $name; |
||
| 31 | protected $searchable; |
||
| 32 | protected $orderable; |
||
| 33 | protected $search; |
||
| 34 | |||
| 35 | /** |
||
| 36 | * Initializing constructor. |
||
| 37 | */ |
||
| 38 | public function __construct(string $data, string $name, bool $searchable, bool $orderable, Search $search) |
||
| 45 | } |
||
| 46 | 1 | ||
| 47 | 1 | /** |
|
| 48 | 1 | * {@inheritdoc} |
|
| 49 | 1 | */ |
|
| 50 | 1 | public function jsonSerialize(): array |
|
| 61 |