From 8e4e85c8806751174baf531b04ad78c51e3083dc Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Thu, 12 Aug 2021 14:54:10 +0200 Subject: [PATCH] Add strict Remove flatten function Cleanup --- DependencyInjection/RapsysUserExtension.php | 43 ++++++--------------- 1 file changed, 11 insertions(+), 32 deletions(-) diff --git a/DependencyInjection/RapsysUserExtension.php b/DependencyInjection/RapsysUserExtension.php index 1c1d1cf..a0f7315 100644 --- a/DependencyInjection/RapsysUserExtension.php +++ b/DependencyInjection/RapsysUserExtension.php @@ -1,4 +1,13 @@ - + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ namespace Rapsys\UserBundle\DependencyInjection; @@ -16,7 +25,7 @@ class RapsysUserExtension extends Extension { /** * {@inheritdoc} */ - public function load(array $configs, ContainerBuilder $container) { + public function load(array $configs, ContainerBuilder $container): void { //Load configuration $configuration = $this->getConfiguration($configs, $container); @@ -39,34 +48,4 @@ class RapsysUserExtension extends Extension { public function getAlias(): string { return RapsysUserBundle::getAlias(); } - - /** - * The function that parses the array to flatten it into a one level depth array - * - * @param $array The config values array - * @param $path The current key path - * @param $depth The maxmium depth - * @param $sep The separator string - */ - /*protected function flatten($array, $path = '', $depth = 10, $sep = '.') { - //Init res - $res = array(); - - //Pass through non hashed or empty array - if ($depth && is_array($array) && ($array === [] || array_keys($array) === range(0, count($array) - 1))) { - $res[$path] = $array; - //Flatten hashed array - } elseif ($depth && is_array($array)) { - foreach($array as $k => $v) { - $sub = $path ? $path.$sep.$k:$k; - $res += $this->flatten($v, $sub, $depth - 1, $sep); - } - //Pass scalar value directly - } else { - $res[$path] = $array; - } - - //Return result - return $res; - }*/ } -- 2.41.0