diff options
author | Robin Appelman <robin@icewind.nl> | 2018-02-12 15:41:23 +0100 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2018-02-12 15:41:23 +0100 |
commit | a815185bb4960312b6e15cda236db09d8ca72c01 (patch) | |
tree | b20496672c015a76b7a0cf33e98b553f25b13dc2 /build/integration | |
parent | fe23bb59160ac992ce125f1cc40cc7c2627921a3 (diff) | |
download | nextcloud-server-a815185bb4960312b6e15cda236db09d8ca72c01.tar.gz nextcloud-server-a815185bb4960312b6e15cda236db09d8ca72c01.zip |
fix redundant namespace
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'build/integration')
-rw-r--r-- | build/integration/features/bootstrap/BasicStructure.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/integration/features/bootstrap/BasicStructure.php b/build/integration/features/bootstrap/BasicStructure.php index afd3fec27f4..0aead766f2a 100644 --- a/build/integration/features/bootstrap/BasicStructure.php +++ b/build/integration/features/bootstrap/BasicStructure.php @@ -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); } |