| 1 | <?php |
||
| 10 | trait NegotiateTrait |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Returns the best value of a header. |
||
| 14 | * |
||
| 15 | * @param string $accept The header to negotiate |
||
| 16 | * @param AbstractNegotiator $negotiator |
||
| 17 | * @param array $priorities |
||
| 18 | * |
||
| 19 | * @return string|null |
||
| 20 | */ |
||
| 21 | private function negotiateHeader($accept, AbstractNegotiator $negotiator, array $priorities) |
||
| 37 | } |
||
| 38 |