| 1 | <?php |
||
| 5 | final class Capabilities |
||
| 6 | { |
||
| 7 | private $supportedComparators; |
||
| 8 | private $setParent; |
||
| 9 | private $queryCount; |
||
| 10 | |||
| 11 | private function __construct() |
||
| 15 | |||
| 16 | public static function create(array $capabilities): Capabilities |
||
| 40 | |||
| 41 | public function getSupportedComparators(): array |
||
| 45 | |||
| 46 | public function canSetParent(): bool |
||
| 50 | |||
| 51 | public function canQueryCount(): bool |
||
| 55 | } |
||
| 56 |