Skip to content

Commit

Permalink
Merge pull request #420 from web-auth/bug/extension-not-loaded
Browse files Browse the repository at this point in the history
Fix bundle extension not loaded
  • Loading branch information
Spomky authored Jun 12, 2023
2 parents 00800cd + 7312c1b commit e8d6be7
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/stimulus/src/WebauthnStimulusBundle.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,18 @@
namespace Webauthn\Stimulus;

use function dirname;

use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
use Symfony\Component\HttpKernel\Bundle\Bundle;

use Webauthn\Stimulus\DependencyInjection\StimulusExtension;

final class WebauthnStimulusBundle extends Bundle
{
public function getContainerExtension(): ?ExtensionInterface
{
return new StimulusExtension();
}

public function getPath(): string
{
return dirname(__DIR__);
Expand Down

0 comments on commit e8d6be7

Please sign in to comment.