Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace Cosray\Controller; |
| 6 | |
| 7 | interface Query |
| 8 | { |
| 9 | public ?bool $map { get; } |
| 10 | public ?string $query { get; } |
| 11 | public ?bool $published { get; } |
| 12 | public ?bool $hidden { get; } |
| 13 | public ?bool $deleted { get; } |
| 14 | public ?bool $content { get; } |
| 15 | public array $uids { get; } |
| 16 | public string $order { get; } |
| 17 | public array $fields { get; } |
| 18 | } |