aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/psr/log/Psr/Log/AbstractLogger.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2021-06-05 09:38:58 +0000
committerMario <mario@mariovavti.com>2021-06-05 09:38:58 +0000
commit3e18efd89fd1bd67f3cef22114f7d74ac7c0021c (patch)
treed0789b37024d6577ab7b309b3dfc7a3337e024ac /vendor/psr/log/Psr/Log/AbstractLogger.php
parentbec3cb48e548bf9d29ac579789cee13a52915be1 (diff)
downloadvolse-hubzilla-3e18efd89fd1bd67f3cef22114f7d74ac7c0021c.tar.gz
volse-hubzilla-3e18efd89fd1bd67f3cef22114f7d74ac7c0021c.tar.bz2
volse-hubzilla-3e18efd89fd1bd67f3cef22114f7d74ac7c0021c.zip
composer update psr/log
Diffstat (limited to 'vendor/psr/log/Psr/Log/AbstractLogger.php')
-rw-r--r--vendor/psr/log/Psr/Log/AbstractLogger.php32
1 files changed, 16 insertions, 16 deletions
diff --git a/vendor/psr/log/Psr/Log/AbstractLogger.php b/vendor/psr/log/Psr/Log/AbstractLogger.php
index 90e721af2..e02f9daf3 100644
--- a/vendor/psr/log/Psr/Log/AbstractLogger.php
+++ b/vendor/psr/log/Psr/Log/AbstractLogger.php
@@ -14,8 +14,8 @@ abstract class AbstractLogger implements LoggerInterface
/**
* System is unusable.
*
- * @param string $message
- * @param array $context
+ * @param string $message
+ * @param mixed[] $context
*
* @return void
*/
@@ -30,8 +30,8 @@ abstract class AbstractLogger implements LoggerInterface
* Example: Entire website down, database unavailable, etc. This should
* trigger the SMS alerts and wake you up.
*
- * @param string $message
- * @param array $context
+ * @param string $message
+ * @param mixed[] $context
*
* @return void
*/
@@ -45,8 +45,8 @@ abstract class AbstractLogger implements LoggerInterface
*
* Example: Application component unavailable, unexpected exception.
*
- * @param string $message
- * @param array $context
+ * @param string $message
+ * @param mixed[] $context
*
* @return void
*/
@@ -59,8 +59,8 @@ abstract class AbstractLogger implements LoggerInterface
* Runtime errors that do not require immediate action but should typically
* be logged and monitored.
*
- * @param string $message
- * @param array $context
+ * @param string $message
+ * @param mixed[] $context
*
* @return void
*/
@@ -75,8 +75,8 @@ abstract class AbstractLogger implements LoggerInterface
* Example: Use of deprecated APIs, poor use of an API, undesirable things
* that are not necessarily wrong.
*
- * @param string $message
- * @param array $context
+ * @param string $message
+ * @param mixed[] $context
*
* @return void
*/
@@ -88,8 +88,8 @@ abstract class AbstractLogger implements LoggerInterface
/**
* Normal but significant events.
*
- * @param string $message
- * @param array $context
+ * @param string $message
+ * @param mixed[] $context
*
* @return void
*/
@@ -103,8 +103,8 @@ abstract class AbstractLogger implements LoggerInterface
*
* Example: User logs in, SQL logs.
*
- * @param string $message
- * @param array $context
+ * @param string $message
+ * @param mixed[] $context
*
* @return void
*/
@@ -116,8 +116,8 @@ abstract class AbstractLogger implements LoggerInterface
/**
* Detailed debug information.
*
- * @param string $message
- * @param array $context
+ * @param string $message
+ * @param mixed[] $context
*
* @return void
*/