diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2018-12-07 13:39:51 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2018-12-07 13:39:51 +0100 |
commit | e22645136cff5fa1f13b1bfff68674281546f1f8 (patch) | |
tree | 038877fcc5a8e64793c4d0ba6ef32ff3f7668f25 | |
parent | 1f492322a8b83c8a5f5aba44058218316ed2908b (diff) | |
download | nextcloud-server-e22645136cff5fa1f13b1bfff68674281546f1f8.tar.gz nextcloud-server-e22645136cff5fa1f13b1bfff68674281546f1f8.zip |
Strict Exceptions
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
-rw-r--r-- | apps/oauth2/lib/Exceptions/AccessTokenNotFoundException.php | 1 | ||||
-rw-r--r-- | apps/oauth2/lib/Exceptions/ClientNotFoundException.php | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/apps/oauth2/lib/Exceptions/AccessTokenNotFoundException.php b/apps/oauth2/lib/Exceptions/AccessTokenNotFoundException.php index a1eb632a9eb..c6b020b8f7e 100644 --- a/apps/oauth2/lib/Exceptions/AccessTokenNotFoundException.php +++ b/apps/oauth2/lib/Exceptions/AccessTokenNotFoundException.php @@ -1,4 +1,5 @@ <?php +declare(strict_types=1); /** * @copyright Copyright (c) 2017 Lukas Reschke <lukas@statuscode.ch> * diff --git a/apps/oauth2/lib/Exceptions/ClientNotFoundException.php b/apps/oauth2/lib/Exceptions/ClientNotFoundException.php index b2395c7bc9e..9655ad508d2 100644 --- a/apps/oauth2/lib/Exceptions/ClientNotFoundException.php +++ b/apps/oauth2/lib/Exceptions/ClientNotFoundException.php @@ -1,4 +1,5 @@ <?php +declare(strict_types=1); /** * @copyright Copyright (c) 2017 Lukas Reschke <lukas@statuscode.ch> * |