From 7b7e7ac456040efb997eb5b32adc38d5bdf3fac6 Mon Sep 17 00:00:00 2001 From: alexmerlin Date: Fri, 18 Aug 2023 18:42:10 +0300 Subject: [PATCH] added phpcs ignore Signed-off-by: alexmerlin --- config/config.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/config.php b/config/config.php index 7e3c393..97e2bb7 100644 --- a/config/config.php +++ b/config/config.php @@ -9,6 +9,7 @@ 'config_cache_path' => 'data/cache/config-cache.php', ]; +// @codingStandardsIgnoreStart $aggregator = new Laminas\ConfigAggregator\ConfigAggregator([ Mezzio\Authorization\Acl\ConfigProvider::class, Mezzio\Authorization\Rbac\ConfigProvider::class, @@ -58,5 +59,6 @@ realpath(__DIR__) . '/development.config.php' ), ], $cacheConfig['config_cache_path']); +// @codingStandardsIgnoreEnd return $aggregator->getMergedConfig();