<?php final class SkipTryCatchFinallyDifferentType { public function run() { try { return 1; } catch (\RuntimeException $e) { return 2; } finally { return "A"; } } } $a = new SkipTryCatchFinallyDifferentType(); var_dump($a->run());
You have javascript disabled. You will not be able to edit any code.