| 1 | <?php |
||
| 9 | class QueryExtractor implements ExtractorInterface |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var string |
||
| 13 | */ |
||
| 14 | protected $parameter; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @param string $parameter Name of the query string parameter |
||
| 18 | */ |
||
| 19 | 3 | public function __construct($parameter) |
|
| 23 | |||
| 24 | /** |
||
| 25 | * @inheritDoc |
||
| 26 | */ |
||
| 27 | 3 | public function getToken(ServerRequestInterface $request) |
|
| 35 | } |
||
| 36 |