Passed
Push — master ( 726ef2...00fb0a )
by Jeroen
02:13
created

helpers.php (2 issues)

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
var_dump($variable) looks like debug code. Are you sure you do not want to remove it?
Loading history...
9
    exit;
0 ignored issues
show
Using exit here is not recommended.

In general, usage of exit should be done with care and only when running in a scripting context like a CLI script.

Loading history...
10
}
11
12
function subject($functionName)
13
{
14
    return sprintf('ElasticEmail Test: %s', $functionName);
15
}