From a815185bb4960312b6e15cda236db09d8ca72c01 Mon Sep 17 00:00:00 2001
From: Robin Appelman <robin@icewind.nl>
Date: Mon, 12 Feb 2018 15:41:23 +0100
Subject: [PATCH] fix redundant namespace

Signed-off-by: Robin Appelman <robin@icewind.nl>
---
 build/integration/features/bootstrap/BasicStructure.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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);
 	}
 
-- 
GitLab