Теряет цикл do-while, если внутри есть try-catch

Issue #11 resolved
Develops repo owner created an issue

Тестовый пример:

do {
  try {
    echo 'outer try 2';
  }
  catch (OuterException $e) {
    echo $e;
  }
} while (0);

Comments (1)

  1. Log in to comment