@@ -46,7 +46,7 @@ discard block  | 
                                                    ||
| 46 | 46 | */  | 
                                                        
| 47 | 47 | public function emergency($message, array $context = []): void  | 
                                                        
| 48 | 48 |      { | 
                                                        
| 49 | - $this->addRecord(self::EMERGENCY, (string)$message, $context);  | 
                                                        |
| 49 | + $this->addRecord(self::EMERGENCY, (string) $message, $context);  | 
                                                        |
| 50 | 50 | }  | 
                                                        
| 51 | 51 | |
| 52 | 52 | /**  | 
                                                        
@@ -54,7 +54,7 @@ discard block  | 
                                                    ||
| 54 | 54 | */  | 
                                                        
| 55 | 55 | public function alert($message, array $context = []): void  | 
                                                        
| 56 | 56 |      { | 
                                                        
| 57 | - $this->addRecord(self::ALERT, (string)$message, $context);  | 
                                                        |
| 57 | + $this->addRecord(self::ALERT, (string) $message, $context);  | 
                                                        |
| 58 | 58 | }  | 
                                                        
| 59 | 59 | |
| 60 | 60 | /**  | 
                                                        
@@ -62,7 +62,7 @@ discard block  | 
                                                    ||
| 62 | 62 | */  | 
                                                        
| 63 | 63 | public function critical($message, array $context = []): void  | 
                                                        
| 64 | 64 |      { | 
                                                        
| 65 | - $this->addRecord(self::CRITICAL, (string)$message, $context);  | 
                                                        |
| 65 | + $this->addRecord(self::CRITICAL, (string) $message, $context);  | 
                                                        |
| 66 | 66 | }  | 
                                                        
| 67 | 67 | |
| 68 | 68 | /**  | 
                                                        
@@ -70,7 +70,7 @@ discard block  | 
                                                    ||
| 70 | 70 | */  | 
                                                        
| 71 | 71 | public function error($message, array $context = []): void  | 
                                                        
| 72 | 72 |      { | 
                                                        
| 73 | - $this->addRecord(self::ERROR, (string)$message, $context);  | 
                                                        |
| 73 | + $this->addRecord(self::ERROR, (string) $message, $context);  | 
                                                        |
| 74 | 74 | }  | 
                                                        
| 75 | 75 | |
| 76 | 76 | /**  | 
                                                        
@@ -78,7 +78,7 @@ discard block  | 
                                                    ||
| 78 | 78 | */  | 
                                                        
| 79 | 79 | public function warning($message, array $context = []): void  | 
                                                        
| 80 | 80 |      { | 
                                                        
| 81 | - $this->addRecord(self::WARNING, (string)$message, $context);  | 
                                                        |
| 81 | + $this->addRecord(self::WARNING, (string) $message, $context);  | 
                                                        |
| 82 | 82 | }  | 
                                                        
| 83 | 83 | |
| 84 | 84 | /**  | 
                                                        
@@ -86,7 +86,7 @@ discard block  | 
                                                    ||
| 86 | 86 | */  | 
                                                        
| 87 | 87 | public function notice($message, array $context = []): void  | 
                                                        
| 88 | 88 |      { | 
                                                        
| 89 | - $this->addRecord(self::NOTICE, (string)$message, $context);  | 
                                                        |
| 89 | + $this->addRecord(self::NOTICE, (string) $message, $context);  | 
                                                        |
| 90 | 90 | }  | 
                                                        
| 91 | 91 | |
| 92 | 92 | /**  | 
                                                        
@@ -94,7 +94,7 @@ discard block  | 
                                                    ||
| 94 | 94 | */  | 
                                                        
| 95 | 95 | public function info($message, array $context = []): void  | 
                                                        
| 96 | 96 |      { | 
                                                        
| 97 | - $this->addRecord(self::INFO, (string)$message, $context);  | 
                                                        |
| 97 | + $this->addRecord(self::INFO, (string) $message, $context);  | 
                                                        |
| 98 | 98 | }  | 
                                                        
| 99 | 99 | |
| 100 | 100 | /**  | 
                                                        
@@ -102,7 +102,7 @@ discard block  | 
                                                    ||
| 102 | 102 | */  | 
                                                        
| 103 | 103 | public function debug($message, array $context = []): void  | 
                                                        
| 104 | 104 |      { | 
                                                        
| 105 | - $this->addRecord(self::DEBUG, (string)$message, $context);  | 
                                                        |
| 105 | + $this->addRecord(self::DEBUG, (string) $message, $context);  | 
                                                        |
| 106 | 106 | }  | 
                                                        
| 107 | 107 | |
| 108 | 108 | /**  | 
                                                        
@@ -110,6 +110,6 @@ discard block  | 
                                                    ||
| 110 | 110 | */  | 
                                                        
| 111 | 111 | public function log($level, $message, array $context = []): void  | 
                                                        
| 112 | 112 |      { | 
                                                        
| 113 | - $this->addRecord($level, (string)$message, $context);  | 
                                                        |
| 113 | + $this->addRecord($level, (string) $message, $context);  | 
                                                        |
| 114 | 114 | }  | 
                                                        
| 115 | 115 | }  |