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 852d170 commit e979df1Copy full SHA for e979df1
src/functions.php
@@ -10,9 +10,9 @@
10
* @SuppressWarnings(PHPMD.ExitExpression)
11
* Does not work if I move to the function annotation
12
* See https://github.com/phpmd/phpmd/issues/337
13
- * @codeCoverageIgnore Can't cover on codecov.io
14
*/
15
-if (! function_exists('dd')) {
+if (! function_exists('dd')) { // @codeCoverageIgnore
+
16
/**
17
* Alias of var_dump() and exit()
18
*
@@ -28,10 +28,8 @@ function dd(...$vars): void
28
}
29
30
31
-/**
32
33
- */
34
-if (! function_exists('d')) {
+if (! function_exists('d')) { // @codeCoverageIgnore
35
36
* Alias of var_dump()
37
0 commit comments