summaryrefslogtreecommitdiffstats
path: root/lib/private/appframework
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2015-08-04 21:41:33 +0200
committerLukas Reschke <lukas@owncloud.com>2015-08-05 09:31:21 +0200
commit90a11efecd0c87feff40a25504e1cf29332d7d08 (patch)
tree578268569d5806dab95082ca1c94d5e6e3403dc3 /lib/private/appframework
parent4efa7c09b135e1af5269f72a6f6a1803e5c1edd2 (diff)
downloadnextcloud-server-90a11efecd0c87feff40a25504e1cf29332d7d08.tar.gz
nextcloud-server-90a11efecd0c87feff40a25504e1cf29332d7d08.zip
Remove "use" statement
Ref https://bugs.php.net/bug.php?id=66773
Diffstat (limited to 'lib/private/appframework')
-rw-r--r--lib/private/appframework/http/request.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/private/appframework/http/request.php b/lib/private/appframework/http/request.php
index 6f108fedc6d..43f01dfde3f 100644
--- a/lib/private/appframework/http/request.php
+++ b/lib/private/appframework/http/request.php
@@ -33,7 +33,6 @@ use OC\Security\TrustedDomainHelper;
use OCP\IConfig;
use OCP\IRequest;
use OCP\Security\ISecureRandom;
-use OCP\Security\StringUtils;
/**
* Class for accessing variables in the request.
@@ -417,7 +416,7 @@ class Request implements \ArrayAccess, \Countable, IRequest {
}
// Check if the token is valid
- if(StringUtils::equals($token, $this->items['requesttoken'])) {
+ if(\OCP\Security\StringUtils::equals($token, $this->items['requesttoken'])) {
return true;
} else {
return false;