These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
1 | <?php |
||
2 | /** |
||
3 | * @author Rizart Dokollari <[email protected]> |
||
4 | * @since 12/24/17 |
||
5 | */ |
||
6 | function dd($variable) |
||
7 | { |
||
8 | var_dump($variable); |
||
0 ignored issues
–
show
Security
Debugging Code
introduced
by
![]() |
|||
9 | exit; |
||
0 ignored issues
–
show
The function dd() contains an exit expression.
An exit expression should only be used in rare cases. For example, if you write a short command line script. In most cases however, using an ![]() |
|||
10 | } |
||
11 | |||
12 | function subject($functionName) |
||
13 | { |
||
14 | return sprintf('ElasticEmail Test: %s', $functionName); |
||
15 | } |