Typehinting merge #50

Merged
belliash merged 298 commits from typehinting into master 2019-04-17 11:27:52 +02:00
Showing only changes of commit e39bdae5b8 - Show all commits

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");