(string $column)
| 402 | } |
| 403 | |
| 404 | private function getAllowedFilterColumn(string $column): ?string |
| 405 | { |
| 406 | if (in_array($column, self::FILTERABLE_COLUMNS, true)) { |
| 407 | return $column; |
| 408 | } |
| 409 | |
| 410 | $this->logger->warning('Blocked unsupported filter column', ['column' => $column]); |
| 411 | return null; |
| 412 | } |
| 413 | } |
no test coverage detected