-<?php
+<?php declare(strict_types=1);
+
+/*
+ * This file is part of the Rapsys PackBundle package.
+ *
+ * (c) Raphaël Gertz <symfony@rapsys.eu>
+ *
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
namespace Rapsys\AirBundle\DependencyInjection;
use Symfony\Component\DependencyInjection\Extension\PrependExtensionInterface;
use Symfony\Component\Translation\Loader\ArrayLoader;
+use Rapsys\AirBundle\RapsysAirBundle;
+
/**
* This is the class that loads and manages your bundle configuration.
*
//Store flattened array in parameters
//XXX: don't flatten rapsys_air.site.png key which is required to be an array
- foreach($this->flatten($config, $this->getAlias(), 10, '.', ['rapsys_air.site.png', 'rapsys_air.facebook.apps', 'rapsys_air.locales', 'rapsys_air.languages']) as $k => $v) {
+ foreach($this->flatten($config, $this->getAlias(), 10, '.', ['rapsys_air.site.png', 'rapsys_air.site.icon', 'rapsys_air.site.logo', 'rapsys_air.facebook.apps', 'rapsys_air.locales', 'rapsys_air.languages']) as $k => $v) {
$container->setParameter($k, $v);
}
}
/**
* {@inheritdoc}
*/
- public function getAlias() {
- return 'rapsys_air';
+ public function getAlias(): string {
+ return RapsysAirBundle::getAlias();
}
/**