Magentron /
elasticemail-php
| 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
Loading history...
|
|||
| 9 | exit; |
||
|
0 ignored issues
–
show
|
|||
| 10 | } |
||
| 11 | |||
| 12 | function subject($functionName) |
||
| 13 | { |
||
| 14 | return sprintf('ElasticEmail Test: %s', $functionName); |
||
| 15 | } |