diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2013-10-05 16:59:06 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2013-10-05 16:59:06 +0200 |
commit | c85621a8971a99a6f811c470f50d9b0e89f957da (patch) | |
tree | b1308a864cdf5687da9bd16433a31b5087930aea /lib/private/appframework/middleware/security/securitymiddleware.php | |
parent | 485bb100b3993af46f6c6be66bd79c563dbffaed (diff) | |
download | nextcloud-server-c85621a8971a99a6f811c470f50d9b0e89f957da.tar.gz nextcloud-server-c85621a8971a99a6f811c470f50d9b0e89f957da.zip |
Make abstract Middleware class public
It doesn't make sense for subclasses to have to implement
all methods.
Diffstat (limited to 'lib/private/appframework/middleware/security/securitymiddleware.php')
-rw-r--r-- | lib/private/appframework/middleware/security/securitymiddleware.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/appframework/middleware/security/securitymiddleware.php b/lib/private/appframework/middleware/security/securitymiddleware.php index 4f1447e1afb..d6daf737bb4 100644 --- a/lib/private/appframework/middleware/security/securitymiddleware.php +++ b/lib/private/appframework/middleware/security/securitymiddleware.php @@ -29,8 +29,8 @@ use OC\AppFramework\Http\Http; use OC\AppFramework\Http\Request; use OC\AppFramework\Http\RedirectResponse; use OC\AppFramework\Utility\MethodAnnotationReader; -use OC\AppFramework\Middleware\Middleware; use OC\AppFramework\Core\API; +use OCP\AppFramework\Middleware; use OCP\AppFramework\Http\Response; use OCP\AppFramework\Http\JSONResponse; |