From 389026d69739585771e5442088be0c0b932cbe3d Mon Sep 17 00:00:00 2001 From: David Grudl Date: Thu, 22 Oct 2015 01:44:28 +0200 Subject: [PATCH] DibiTranslator: removed die() --- dibi/libs/DibiTranslator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dibi/libs/DibiTranslator.php b/dibi/libs/DibiTranslator.php index 45d908ef..3032d3d5 100644 --- a/dibi/libs/DibiTranslator.php +++ b/dibi/libs/DibiTranslator.php @@ -598,7 +598,7 @@ final class DibiTranslator extends DibiObject return $matches[9] == '' ? $this->formatValue($m, FALSE) : $m . $matches[9]; // value or identifier } - die('this should be never executed'); + throw new Exception('this should be never executed'); }