Completed
Pull Request — develop (#1492)
by Zack
28:58 queued 09:00
created
wpcs/WordPress/Sniffs/DB/PreparedSQLSniff.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@
 block discarded – undo
98 98
 	 *
99 99
 	 * @since 0.8.0
100 100
 	 *
101
-	 * @return array
101
+	 * @return integer[]
102 102
 	 */
103 103
 	public function register() {
104 104
 
Please login to merge, or discard this patch.
wpcs/WordPress/Sniffs/DB/SlowDBQuerySniff.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
 	 * @param  mixed  $val   Assigned value.
77 77
 	 * @param  int    $line  Token line.
78 78
 	 * @param  array  $group Group definition.
79
-	 * @return mixed         FALSE if no match, TRUE if matches, STRING if matches
79
+	 * @return boolean         FALSE if no match, TRUE if matches, STRING if matches
80 80
 	 *                       with custom error message passed to ->process().
81 81
 	 */
82 82
 	public function callback( $key, $val, $line, $group ) {
Please login to merge, or discard this patch.
wpcs/WordPress/Sniffs/PHP/StrictComparisonsSniff.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
 	/**
30 30
 	 * Returns an array of tokens this test wants to listen for.
31 31
 	 *
32
-	 * @return array
32
+	 * @return integer[]
33 33
 	 */
34 34
 	public function register() {
35 35
 		return array(
Please login to merge, or discard this patch.
wpcs/WordPress/Sniffs/PHP/YodaConditionsSniff.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -165,7 +165,7 @@
 block discarded – undo
165 165
 	/**
166 166
 	 * Returns an array of tokens this test wants to listen for.
167 167
 	 *
168
-	 * @return array
168
+	 * @return integer[]
169 169
 	 */
170 170
 	public function register() {
171 171
 
Please login to merge, or discard this patch.
wpcs/WordPress/Sniffs/Security/EscapeOutputSniff.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -165,7 +165,7 @@
 block discarded – undo
165 165
 	/**
166 166
 	 * Returns an array of tokens this test wants to listen for.
167 167
 	 *
168
-	 * @return array
168
+	 * @return integer[]
169 169
 	 */
170 170
 	public function register() {
171 171
 
Please login to merge, or discard this patch.
wpcs/WordPress/Sniffs/Security/NonceVerificationSniff.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -165,7 +165,7 @@
 block discarded – undo
165 165
 	/**
166 166
 	 * Returns an array of tokens this test wants to listen for.
167 167
 	 *
168
-	 * @return array
168
+	 * @return integer[]
169 169
 	 */
170 170
 	public function register() {
171 171
 
Please login to merge, or discard this patch.
wpcs/WordPress/Sniffs/WhiteSpace/DisallowInlineTabsSniff.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
 	/**
30 30
 	 * Returns an array of tokens this test wants to listen for.
31 31
 	 *
32
-	 * @return array
32
+	 * @return integer[]
33 33
 	 */
34 34
 	public function register() {
35 35
 		return array(
Please login to merge, or discard this patch.
wpcs/WordPress/Sniffs/WhiteSpace/PrecisionAlignmentSniff.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
 	/**
30 30
 	 * Returns an array of tokens this test wants to listen for.
31 31
 	 *
32
-	 * @return array
32
+	 * @return integer[]
33 33
 	 */
34 34
 	public function register() {
35 35
 		return array(
Please login to merge, or discard this patch.
wpcs/WordPress/Sniffs/WP/CapitalPDangitSniff.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -270,7 +270,7 @@
 block discarded – undo
270 270
 	/**
271 271
 	 * Retrieve a list of misspellings based on an array of matched variations on the target word.
272 272
 	 *
273
-	 * @param array $match_stack Array of matched variations of the target word.
273
+	 * @param string[] $match_stack Array of matched variations of the target word.
274 274
 	 * @return array Array containing only the misspelled variants.
275 275
 	 */
276 276
 	protected function retrieve_misspellings( $match_stack ) {
Please login to merge, or discard this patch.