| 1 | <?php |
||
| 9 | class EmptyStructure implements Structure |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * Fetch row class by table |
||
| 13 | * @param string $table |
||
| 14 | * @return string |
||
| 15 | */ |
||
| 16 | public function getActiveRowClass(string $table): string |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Fetch selection class by table |
||
| 23 | * @param string $table |
||
| 24 | * @return string |
||
| 25 | */ |
||
| 26 | public function getSelectionClass(string $table): string |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Returns all scopes registered for table |
||
| 33 | * @param string $table |
||
| 34 | * @return array |
||
| 35 | */ |
||
| 36 | public function getScopes(string $table): array |
||
| 40 | |||
| 41 | /** |
||
| 42 | * Returns one scope |
||
| 43 | * @param string $table |
||
| 44 | * @param string $scope |
||
| 45 | * @return Scope|null |
||
| 46 | */ |
||
| 47 | public function getScope(string $table, string $scope): ?Scope |
||
| 51 | } |
||
| 52 |