Skip to content

Commit

Permalink
MISC: code style ++, fix namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
yivi committed Dec 19, 2023
1 parent ec5b09d commit a024cad
Showing 1 changed file with 7 additions and 13 deletions.
20 changes: 7 additions & 13 deletions src/YivoffJwtRefreshBundle.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand All @@ -42,7 +37,7 @@ public function getName(): string

public function getNamespace(): string
{
return 'Yivoff';
return 'Yivoff\\JwtRefreshBundle';
}

public function getPath(): string
Expand All @@ -54,5 +49,4 @@ public function setContainer(?ContainerInterface $container): void
{
$this->container = $container;
}

}

0 comments on commit a024cad

Please sign in to comment.