From e6c8ae056c1e1d307e999d1519ee1972dd8bb664 Mon Sep 17 00:00:00 2001 From: Marco Date: Sun, 4 Dec 2016 16:46:05 +0100 Subject: [PATCH] Ignore warnings for 'zend.assertions' that cannot be set --- tests/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/index.php b/tests/index.php index b7dcccd..4bd649f 100644 --- a/tests/index.php +++ b/tests/index.php @@ -12,7 +12,7 @@ ini_set('display_errors', 'stdout'); // enable assertions ini_set('assert.active', 1); -ini_set('zend.assertions', 1); +@ini_set('zend.assertions', 1); ini_set('assert.exception', 1); header('Content-type: text/html; charset=utf-8');