@@ -53,7 +53,7 @@ public function __construct(OutputInterface $output)
53
53
/**
54
54
* @param int $level
55
55
*/
56
- public function setLevel ($ level )
56
+ public function setLevel ($ level ): void
57
57
{
58
58
$ this ->level = $ level ;
59
59
}
@@ -64,7 +64,7 @@ public function setLevel($level)
64
64
*
65
65
* @return void
66
66
*/
67
- public function emergency ($ message , array $ context = [])
67
+ public function emergency ($ message , array $ context = []): void
68
68
{
69
69
$ this ->emerg ($ message , $ context );
70
70
}
@@ -75,7 +75,7 @@ public function emergency($message, array $context = [])
75
75
*
76
76
* @return void
77
77
*/
78
- public function emerg ($ message , array $ context = [])
78
+ public function emerg ($ message , array $ context = []): void
79
79
{
80
80
if (0 === ($ this ->level & self ::EMERG )) {
81
81
return ;
@@ -90,7 +90,7 @@ public function emerg($message, array $context = [])
90
90
*
91
91
* @return void
92
92
*/
93
- public function alert ($ message , array $ context = [])
93
+ public function alert ($ message , array $ context = []): void
94
94
{
95
95
if (0 === ($ this ->level & self ::ALERT )) {
96
96
return ;
@@ -105,7 +105,7 @@ public function alert($message, array $context = [])
105
105
*
106
106
* @return void
107
107
*/
108
- public function critical ($ message , array $ context = [])
108
+ public function critical ($ message , array $ context = []): void
109
109
{
110
110
$ this ->crit ($ message , $ context );
111
111
}
@@ -116,7 +116,7 @@ public function critical($message, array $context = [])
116
116
*
117
117
* @return void
118
118
*/
119
- public function crit ($ message , array $ context = [])
119
+ public function crit ($ message , array $ context = []): void
120
120
{
121
121
if (0 === ($ this ->level & self ::CRIT )) {
122
122
return ;
@@ -131,7 +131,7 @@ public function crit($message, array $context = [])
131
131
*
132
132
* @return void
133
133
*/
134
- public function error ($ message , array $ context = [])
134
+ public function error ($ message , array $ context = []): void
135
135
{
136
136
$ this ->err ($ message , $ context );
137
137
}
@@ -142,7 +142,7 @@ public function error($message, array $context = [])
142
142
*
143
143
* @return void
144
144
*/
145
- public function err ($ message , array $ context = [])
145
+ public function err ($ message , array $ context = []): void
146
146
{
147
147
if (0 === ($ this ->level & self ::ERR )) {
148
148
return ;
@@ -157,7 +157,7 @@ public function err($message, array $context = [])
157
157
*
158
158
* @return void
159
159
*/
160
- public function warning ($ message , array $ context = [])
160
+ public function warning ($ message , array $ context = []): void
161
161
{
162
162
$ this ->warn ($ message , $ context );
163
163
}
@@ -168,7 +168,7 @@ public function warning($message, array $context = [])
168
168
*
169
169
* @return void
170
170
*/
171
- public function warn ($ message , array $ context = [])
171
+ public function warn ($ message , array $ context = []): void
172
172
{
173
173
if (0 === ($ this ->level & self ::WARN )) {
174
174
return ;
@@ -183,7 +183,7 @@ public function warn($message, array $context = [])
183
183
*
184
184
* @return void
185
185
*/
186
- public function notice ($ message , array $ context = [])
186
+ public function notice ($ message , array $ context = []): void
187
187
{
188
188
if (0 === ($ this ->level & self ::NOTICE )) {
189
189
return ;
@@ -198,7 +198,7 @@ public function notice($message, array $context = [])
198
198
*
199
199
* @return void
200
200
*/
201
- public function info ($ message , array $ context = [])
201
+ public function info ($ message , array $ context = []): void
202
202
{
203
203
if (0 === ($ this ->level & self ::INFO )) {
204
204
return ;
@@ -213,7 +213,7 @@ public function info($message, array $context = [])
213
213
*
214
214
* @return void
215
215
*/
216
- public function debug ($ message , array $ context = [])
216
+ public function debug ($ message , array $ context = []): void
217
217
{
218
218
if (0 === ($ this ->level & self ::DEBUG )) {
219
219
return ;
@@ -229,7 +229,7 @@ public function debug($message, array $context = [])
229
229
*
230
230
* @return void
231
231
*/
232
- public function log ($ level , $ message , array $ context = [])
232
+ public function log ($ level , $ message , array $ context = []): void
233
233
{
234
234
if (0 === ($ this ->level & $ level )) {
235
235
return ;
0 commit comments