We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d51e931 commit af7db0bCopy full SHA for af7db0b
tests/Sniffs/Functions/data/unusedParameterNoErrors.php
@@ -8,19 +8,27 @@ function noParameter()
8
/**
9
* @phpcsSuppress SlevomatCodingStandard.Functions.UnusedParameter
10
*/
11
-function wholeSniffSupress($a)
+function wholeSniffSuppress($a)
12
{
13
14
}
15
16
17
* @phpcsSuppress SlevomatCodingStandard.Functions.UnusedParameter.UnusedParameter
18
19
-function codeSupress($a)
+function codeSuppress($a)
20
21
22
23
24
+/**
25
+ * @phpcsSuppress SlevomatCodingStandard.Functions.UnusedParameter
26
+ */
27
+function ($closureSuppress)
28
+{
29
+
30
+};
31
32
function usedParameter($a)
33
34
echo $a;
0 commit comments