Bladeren bron

CS fixes - removal of debug settings

Marco Pivetta 12 jaren geleden
bovenliggende
commit
db42690f4d

+ 1 - 1
php-zend-framework/config/application.config.php

@@ -13,4 +13,4 @@ return array(
         'cache_dir'            => 'data/cache',
         'check_dependencies'   => false,
     ),
-);
+);

+ 1 - 1
php-zend-framework/config/autoload/benchmarks.local.php

@@ -5,4 +5,4 @@ return array(
         'driver' => 'Pdo',
         'dsn'    => 'mysql:dbname=hello_world;host=localhost',
     ),
-);
+);

+ 1 - 1
php-zend-framework/module/FrameworkBenchmarks/src/FrameworkBenchmarks/Controller/JsonController.php

@@ -20,4 +20,4 @@ class JsonController extends AbstractActionController
     {
         return new JsonModel(array('message' => 'Hello, World!'));
     }
-}
+}

+ 1 - 2
php-zend-framework/public/index.php

@@ -1,7 +1,6 @@
 <?php
-ini_set('display_errors', 1);
 chdir(dirname(__DIR__));
 
 require __DIR__ . '/../vendor/autoload.php';
 
-Zend\Mvc\Application::init(require 'config/application.config.php')->run();
+Zend\Mvc\Application::init(require 'config/application.config.php')->run();