@@ -14,8 +14,8 @@ abstract class AbstractLogger implements LoggerInterface
14
14
/**
15
15
* System is unusable.
16
16
*
17
- * @param string $message
18
- * @param array $context
17
+ * @param string $message
18
+ * @param mixed[] $context
19
19
*
20
20
* @return void
21
21
*/
@@ -30,8 +30,8 @@ public function emergency($message, array $context = array())
30
30
* Example: Entire website down, database unavailable, etc. This should
31
31
* trigger the SMS alerts and wake you up.
32
32
*
33
- * @param string $message
34
- * @param array $context
33
+ * @param string $message
34
+ * @param mixed[] $context
35
35
*
36
36
* @return void
37
37
*/
@@ -45,8 +45,8 @@ public function alert($message, array $context = array())
45
45
*
46
46
* Example: Application component unavailable, unexpected exception.
47
47
*
48
- * @param string $message
49
- * @param array $context
48
+ * @param string $message
49
+ * @param mixed[] $context
50
50
*
51
51
* @return void
52
52
*/
@@ -59,8 +59,8 @@ public function critical($message, array $context = array())
59
59
* Runtime errors that do not require immediate action but should typically
60
60
* be logged and monitored.
61
61
*
62
- * @param string $message
63
- * @param array $context
62
+ * @param string $message
63
+ * @param mixed[] $context
64
64
*
65
65
* @return void
66
66
*/
@@ -75,8 +75,8 @@ public function error($message, array $context = array())
75
75
* Example: Use of deprecated APIs, poor use of an API, undesirable things
76
76
* that are not necessarily wrong.
77
77
*
78
- * @param string $message
79
- * @param array $context
78
+ * @param string $message
79
+ * @param mixed[] $context
80
80
*
81
81
* @return void
82
82
*/
@@ -88,8 +88,8 @@ public function warning($message, array $context = array())
88
88
/**
89
89
* Normal but significant events.
90
90
*
91
- * @param string $message
92
- * @param array $context
91
+ * @param string $message
92
+ * @param mixed[] $context
93
93
*
94
94
* @return void
95
95
*/
@@ -103,8 +103,8 @@ public function notice($message, array $context = array())
103
103
*
104
104
* Example: User logs in, SQL logs.
105
105
*
106
- * @param string $message
107
- * @param array $context
106
+ * @param string $message
107
+ * @param mixed[] $context
108
108
*
109
109
* @return void
110
110
*/
@@ -116,8 +116,8 @@ public function info($message, array $context = array())
116
116
/**
117
117
* Detailed debug information.
118
118
*
119
- * @param string $message
120
- * @param array $context
119
+ * @param string $message
120
+ * @param mixed[] $context
121
121
*
122
122
* @return void
123
123
*/
0 commit comments