(string $key, string $token)
| 30 | } |
| 31 | |
| 32 | protected function getValue(string $key, string $token): ?string |
| 33 | { |
| 34 | $values = $this->getValues($key); |
| 35 | if (!isset($values[$token])) { |
| 36 | return null; |
| 37 | } |
| 38 | return $values[$token]; |
| 39 | } |
| 40 | |
| 41 | protected function getValues(string $key): array |
| 42 | { |
no test coverage detected