Updated local config files which were not fulfilling the project's coding standards

This commit is contained in:
Alejandro Celaya 2020-01-12 10:06:45 +01:00
parent 94af588a3c
commit 15a72e2a88
3 changed files with 8 additions and 2 deletions

View file

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
use Laminas\ConfigAggregator\ConfigAggregator;

View file

@ -1,9 +1,13 @@
<?php
declare(strict_types=1);
use Mezzio\Router\FastRouteRouter;
return [
'router' => [
// 'base_path' => '',
'fastroute' => [
FastRouteRouter::CONFIG_CACHE_ENABLED => false,
],

View file

@ -1,12 +1,13 @@
<?php
declare(strict_types=1);
use Mezzio\Swoole\HotCodeReload\FileWatcher\InotifyFileWatcher;
use Laminas\ServiceManager\Factory\InvokableFactory;
use Mezzio\Swoole\HotCodeReload\FileWatcher\InotifyFileWatcher;
return [
'mezzio-swoole' => [
'expressive-swoole' => [
'hot-code-reload' => [
'enable' => true,
],