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.
Passed
Pull Request — master (#5)
by no
01:55
created
src/HtmlMatcher.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 
9 9
 class HtmlMatcher extends DiagnosingMatcher
10 10
 {
11
-	/**
11
+    /**
12 12
      * @link http://www.xmlsoft.org/html/libxml-xmlerror.html#xmlParserErrors
13 13
      * @link https://github.com/Chronic-Dev/libxml2/blob/683f296a905710ff285c28b8644ef3a3d8be9486/include/libxml/xmlerror.h#L257
14 14
      */
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@
 block discarded – undo
99 99
      */
100 100
     private function escapeScriptTagContents($html)
101 101
     {
102
-        return preg_replace_callback('#(<script.*>)(.*)(</script>)#isU', function ($matches)
102
+        return preg_replace_callback('#(<script.*>)(.*)(</script>)#isU', function($matches)
103 103
         {
104 104
             return $matches[1] . str_replace('</', '<\/', $matches[2]) . $matches[3];
105 105
         }, $html);
Please login to merge, or discard this patch.