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 ff9e38a480 - Show all commits

View File

@ -5,7 +5,7 @@ class Program {
} }
function a(string $p) { function a(string $p) {
mixed $backtrace = debug_backtrace(); mixed[] $backtrace = debug_backtrace();
if(isset($backtrace[0]['args'])) { if(isset($backtrace[0]['args'])) {
var_export($backtrace[0]['args']); var_export($backtrace[0]['args']);
} else { } else {