fix redundant namespace

Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
Robin Appelman 2018-02-12 15:41:23 +01:00
parent fe23bb5916
commit a815185bb4
No known key found for this signature in database
GPG Key ID: 42B69D8A64526EFB
1 changed files with 1 additions and 1 deletions

View File

@ -259,7 +259,7 @@ trait BasicStructure {
/**
* @param ResponseInterface $response
*/
private function extracRequestTokenFromResponse(\Psr\Http\Message\ResponseInterface $response) {
private function extracRequestTokenFromResponse(ResponseInterface $response) {
$this->requestToken = substr(preg_replace('/(.*)data-requesttoken="(.*)">(.*)/sm', '\2', $response->getBody()->getContents()), 0, 89);
}