Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2018-02-27 12:43:34 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2018-02-27 12:43:34 +0300
commit83eb548d23dff78571b8ba827566ed33cdfa985e (patch)
tree04030406cb547d3dc9113dbf99e80de9879dfa7e /lib/public/ILogger.php
parent4077f16aecafbc5d07a43f458aeb67d3edf1213d (diff)
Typehint Throwable
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'lib/public/ILogger.php')
-rw-r--r--lib/public/ILogger.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/ILogger.php b/lib/public/ILogger.php
index 2d44244075b..9370913a82f 100644
--- a/lib/public/ILogger.php
+++ b/lib/public/ILogger.php
@@ -144,5 +144,5 @@ interface ILogger {
* @return void
* @since 8.2.0
*/
- public function logException($exception, array $context = []);
+ public function logException(\Throwable $exception, array $context = []);
}