From e4acc4a2c8cae6062753b4181056227fe35c7030 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 a1acbc09..13a86278 100644 --- a/dibi/libs/DibiTranslator.php +++ b/dibi/libs/DibiTranslator.php @@ -588,7 +588,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'); }