diff --git a/src/YivoffJwtRefreshBundle.php b/src/YivoffJwtRefreshBundle.php index 8ae049d..c46b6f2 100644 --- a/src/YivoffJwtRefreshBundle.php +++ b/src/YivoffJwtRefreshBundle.php @@ -9,26 +9,21 @@ use Symfony\Component\DependencyInjection\Extension\ExtensionInterface; use Symfony\Component\HttpKernel\Bundle\BundleInterface; use Yivoff\JwtRefreshBundle\DependencyInjection\YivoffJwtRefreshExtension; + use function dirname; class YivoffJwtRefreshBundle implements BundleInterface { public const BUNDLE_PREFIX = 'yivoff_jwt_refresh'; - protected ExtensionInterface|false|null $extension = null; - protected ?ContainerInterface $container = null; + protected null|ExtensionInterface|false $extension = null; + protected ?ContainerInterface $container = null; - public function boot() - { - } + public function boot(): void {} - public function shutdown() - { - } + public function shutdown(): void {} - public function build(ContainerBuilder $container) - { - } + public function build(ContainerBuilder $container): void {} public function getContainerExtension(): ?ExtensionInterface { @@ -42,7 +37,7 @@ public function getName(): string public function getNamespace(): string { - return 'Yivoff'; + return 'Yivoff\\JwtRefreshBundle'; } public function getPath(): string @@ -54,5 +49,4 @@ public function setContainer(?ContainerInterface $container): void { $this->container = $container; } - }