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