@@ -25,72 +25,72 @@ public function __construct($logger)
2525 /**
2626 * {@inheritdoc}
2727 */
28- public function emergency ($ message , array $ context = [])
28+ public function emergency ($ message , array $ context = []): void
2929 {
30- return $ this ->logger ->emergency ($ message , $ context );
30+ $ this ->logger ->emergency ($ message , $ context );
3131 }
3232
3333 /**
3434 * {@inheritdoc}
3535 */
36- public function alert ($ message , array $ context = [])
36+ public function alert ($ message , array $ context = []): void
3737 {
38- return $ this ->logger ->alert ($ message , $ context );
38+ $ this ->logger ->alert ($ message , $ context );
3939 }
4040
4141 /**
4242 * {@inheritdoc}
4343 */
44- public function critical ($ message , array $ context = [])
44+ public function critical ($ message , array $ context = []): void
4545 {
46- return $ this ->logger ->critical ($ message , $ context );
46+ $ this ->logger ->critical ($ message , $ context );
4747 }
4848
4949 /**
5050 * {@inheritdoc}
5151 */
52- public function error ($ message , array $ context = [])
52+ public function error ($ message , array $ context = []): void
5353 {
54- return $ this ->logger ->error ($ message , $ context );
54+ $ this ->logger ->error ($ message , $ context );
5555 }
5656
5757 /**
5858 * {@inheritdoc}
5959 */
60- public function warning ($ message , array $ context = [])
60+ public function warning ($ message , array $ context = []): void
6161 {
62- return $ this ->logger ->warning ($ message , $ context );
62+ $ this ->logger ->warning ($ message , $ context );
6363 }
6464
6565 /**
6666 * {@inheritdoc}
6767 */
68- public function notice ($ message , array $ context = [])
68+ public function notice ($ message , array $ context = []): void
6969 {
70- return $ this ->logger ->notice ($ message , $ context );
70+ $ this ->logger ->notice ($ message , $ context );
7171 }
7272
7373 /**
7474 * {@inheritdoc}
7575 */
76- public function info ($ message , array $ context = [])
76+ public function info ($ message , array $ context = []): void
7777 {
78- return $ this ->logger ->info ($ message , $ context );
78+ $ this ->logger ->info ($ message , $ context );
7979 }
8080
8181 /**
8282 * {@inheritdoc}
8383 */
84- public function debug ($ message , array $ context = [])
84+ public function debug ($ message , array $ context = []): void
8585 {
86- return $ this ->logger ->debug ($ message , $ context );
86+ $ this ->logger ->debug ($ message , $ context );
8787 }
8888
8989 /**
9090 * {@inheritdoc}
9191 */
92- public function log ($ level , $ message , array $ context = [])
92+ public function log ($ level , $ message , array $ context = []): void
9393 {
94- return $ this ->logger ->log ($ level , $ message , $ context );
94+ $ this ->logger ->log ($ level , $ message , $ context );
9595 }
9696}
0 commit comments