GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Pull Request — master (#75)
by Laszlo
02:46
created
Formatter/HtmlOutputFormatterDecorator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -99,12 +99,12 @@
 block discarded – undo
99 99
      */
100 100
     public function format($message)
101 101
     {
102
-        if(!$this->isDecorated()) {
102
+        if (!$this->isDecorated()) {
103 103
             return $message;
104 104
         }
105 105
         $formatted = $this->formatter->format($message);
106 106
         $escaped = htmlspecialchars($formatted, ENT_QUOTES, 'UTF-8');
107
-        $converted = preg_replace_callback(self::CLI_COLORS_PATTERN, function ($matches) {
107
+        $converted = preg_replace_callback(self::CLI_COLORS_PATTERN, function($matches) {
108 108
             return $this->replaceFormat($matches);
109 109
         }, $escaped);
110 110
         return $converted;
Please login to merge, or discard this patch.