Fix test.
The build was successful. Details

This commit is contained in:
Rafal Kupiec 2019-03-23 23:25:00 +01:00
parent 4f29507c0d
commit e39bdae5b8
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ class Program {
string a(string $p) {
mixed[] $backtrace = debug_backtrace();
if(isset($backtrace[0]['args'])) {
if(array_key_exists('args', $backtrace[0])) {
var_export($backtrace[0]['args']);
} else {
print("Cannot aquire arguments\n");