<?php set_error_handler(function (int $errorNo, string $message, string $file, int $line): bool { if ($errorNo == E_DEPRECATED) { throw new ErrorException($message, 0, $errorNo, $file, $line); } return TRUE; }); class Test { function try() { $this->property = 'hello'; } } $test = new Test(); $test->try();
You have javascript disabled. You will not be able to edit any code.