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
Push — master ( aaa176...90d9d6 )
by Emil
02:26
created
src/Escaper/CEscaper.php 1 patch
Doc Comments   +9 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,6 +25,7 @@  discard block
 block discarded – undo
25 25
 	/** Sets the used charset for the esacpeHTML and escapeXML function.
26 26
 	*
27 27
 	* @param $value, the string/value to escape.
28
+	* @param string $value
28 29
 	*
29 30
 	*/
30 31
 	public function setEncoding($value)
@@ -35,7 +36,7 @@  discard block
 block discarded – undo
35 36
 	
36 37
 	/** Returns the used charset for the esacpeHTML and escapeXML function.
37 38
 	*
38
-	* @return the current charset as a string.
39
+	* @return string current charset as a string.
39 40
 	*/
40 41
 	public function getEncoding()
41 42
 	{
@@ -75,6 +76,7 @@  discard block
 block discarded – undo
75 76
 	/** Escapes non-alphanumeric characters in an untrusted string for JS input values.
76 77
 	*
77 78
 	* @param $string, the untrusted string to escape.
79
+	* @param string $value
78 80
 	*
79 81
 	* @return $result, escaped string.
80 82
 	*/
@@ -91,6 +93,7 @@  discard block
 block discarded – undo
91 93
 	/** Escapes non-alphanumeric characters in an untrusted string for CSS input values.
92 94
 	*
93 95
 	* @param $string, the untrusted string to escape.
96
+	* @param string $value
94 97
 	*
95 98
 	* @return $result, escaped string.
96 99
 	*/
@@ -107,6 +110,7 @@  discard block
 block discarded – undo
107 110
 	/** Escapes data that is to be inserted in a URL not the whole URL itself.
108 111
 	* 
109 112
 	* @param $string, the untrusted string to escape.
113
+	* @param string $value
110 114
 	*
111 115
 	* @return, escaped string.
112 116
 	*/
@@ -118,12 +122,16 @@  discard block
 block discarded – undo
118 122
 	/**
119 123
 	* Aliases to HTML functions for semantic value.
120 124
 	* XML escaping is identical to HTML escaping.
125
+	* @param string $value
121 126
 	*/
122 127
 	public function escapeXml($value)
123 128
 	{
124 129
 		return $this->escapeHTML($value);
125 130
 	}
126 131
 
132
+	/**
133
+	 * @param string $value
134
+	 */
127 135
 	public function escapeXmlAttr($value)
128 136
 	{
129 137
 		return $this->escapeHTMLattr($value);
Please login to merge, or discard this patch.