From 708aaf43238a88e9d3d6d3b3f824142866292956 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Thu, 7 Mar 2024 19:09:19 +0100 Subject: [PATCH] Shorten bundle alias Add getVersion member function --- RapsysAirBundle.php | 29 +++++++++++++++++++++++++---- 1 file changed, 25 insertions(+), 4 deletions(-) diff --git a/RapsysAirBundle.php b/RapsysAirBundle.php index 0bad725..84b94cd 100644 --- a/RapsysAirBundle.php +++ b/RapsysAirBundle.php @@ -14,13 +14,24 @@ namespace Rapsys\AirBundle; use Symfony\Component\DependencyInjection\Container; use Symfony\Component\HttpKernel\Bundle\Bundle; +/** + * {@inheritdoc} + */ class RapsysAirBundle extends Bundle { + /** + * {@inheritdoc} + */ + public function getContainerExtension(): ?ExtensionInterface { + //Return created container extension + return $this->createContainerExtension(); + } + /** * Return bundle alias * * @return string The bundle alias */ - public static function getAlias(): string { + public static function getAlias(): string { //With namespace if ($npos = strrpos(static::class, '\\')) { //Set name pos @@ -40,7 +51,17 @@ class RapsysAirBundle extends Bundle { $bpos = strlen(static::class) - $npos; } - //Return underscored lowercase bundle alias - return Container::underscore(substr(static::class, $npos, $bpos)); - } + //Return lowercase bundle alias + return strtolower(substr(static::class, $npos, $bpos)); + } + + /** + * Return bundle version + * + * @return string The bundle version + */ + public static function getVersion(): string { + //Return version + return '0.4.0'; + } } -- 2.41.0