From 1229707841edee97b681e9414b58f4523e034ed1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Wed, 31 Jan 2024 22:59:03 +0100 Subject: [PATCH] Strict types --- DependencyInjection/RapsysAirExtension.php | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/DependencyInjection/RapsysAirExtension.php b/DependencyInjection/RapsysAirExtension.php index a630553..a66e3cc 100644 --- a/DependencyInjection/RapsysAirExtension.php +++ b/DependencyInjection/RapsysAirExtension.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\AirBundle\DependencyInjection; @@ -7,6 +16,8 @@ use Symfony\Component\DependencyInjection\Extension\Extension; 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. * @@ -89,8 +100,8 @@ class RapsysAirExtension extends Extension implements PrependExtensionInterface /** * {@inheritdoc} */ - public function getAlias() { - return 'rapsys_air'; + public function getAlias(): string { + return RapsysAirBundle::getAlias(); } /** -- 2.41.0