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
Branch master (5759ec)
by Emil
02:18
created
src/Escaper/CEscaper.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
 	
36 36
 	/** Returns the used charset for the esacpeHTML and escapeXML function.
37 37
 	*
38
-	* @return the current charset as a string.
38
+	* @return string current charset as a string.
39 39
 	*/
40 40
 	public function getEncoding()
41 41
 	{
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
 	*/
65 65
 	public function escapeHTMLattr($value)
66 66
 	{
67
-		$result = preg_replace_callback("/[\W]/", function ($matches){
67
+		$result = preg_replace_callback("/[\W]/", function($matches) {
68 68
 			return "&#x" . bin2hex($matches[0]) . ";";
69 69
 		}, 
70 70
 		$value);
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
 	*/
81 81
 	public function escapeJs($value)
82 82
 	{
83
-		$result = preg_replace_callback("/[\W]/", function ($matches){
83
+		$result = preg_replace_callback("/[\W]/", function($matches) {
84 84
 			return "\\x" . bin2hex($matches[0]);
85 85
 		}, 
86 86
 		$value);
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
 	*/
97 97
 	public function escapeCSS($value)
98 98
 	{
99
-		$result = preg_replace_callback("/[\W]/", function ($matches){
99
+		$result = preg_replace_callback("/[\W]/", function($matches) {
100 100
 			return "\\" . bin2hex($matches[0]) . " ";
101 101
 		}, 
102 102
 		$value);
Please login to merge, or discard this patch.