$test = null;
try {
$test->delete;
} catch (\Exception $e) {
//все ок мы сюда попали
}$test = null;
try {
$test->delete();
} catch (\Exception $e) {
//мы сюда не попали
} Вася->имя
Вася->вес
Вася->возрастВася->копай()
Вася->пей()
$test->delete;$test->delete();