Test Setup Failed
Push — master ( cf92d1...ffbff4 )
by Joël
02:52
created
src/config/gettext.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,7 @@
 block discarded – undo
1 1
 <?php
2
-if (!defined('PHPUNIT_TESTING')) defined('BASEPATH') OR exit('No direct script access allowed');
2
+if (!defined('PHPUNIT_TESTING')) {
3
+    defined('BASEPATH') OR exit('No direct script access allowed');
4
+}
3 5
 
4 6
 // Gettext catalog codeset
5 7
 $config['gettext_catalog_codeset'] = 'UTF-8';
Please login to merge, or discard this patch.
src/libraries/Gettext.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 // @codeCoverageIgnoreStart
3
-if (!defined('PHPUNIT_TESTING')) defined('BASEPATH') OR exit('No direct script access allowed');
3
+if (!defined('PHPUNIT_TESTING')) {
4
+    defined('BASEPATH') OR exit('No direct script access allowed');
5
+}
4 6
 // @codeCoverageIgnoreEnd
5 7
 
6 8
 /**
Please login to merge, or discard this patch.