Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
xabbuh committed Aug 20, 2024
1 parent 34eb12a commit 620be16
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public function getKey(): string
return 'custom';
}

public function addConfiguration(NodeDefinition $builder)
public function addConfiguration(NodeDefinition $builder): void
{
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

class CustomProvider implements UserProviderFactoryInterface
{
public function create(ContainerBuilder $container, string $id, array $config)
public function create(ContainerBuilder $container, string $id, array $config): void
{
}

Expand All @@ -17,7 +17,7 @@ public function getKey(): string
return 'custom';
}

public function addConfiguration(NodeDefinition $builder)
public function addConfiguration(NodeDefinition $builder): void
{
$builder
->children()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
http://symfony.com/schema/dic/security
https://symfony.com/schema/dic/security/security-1.0.xsd">

<sec:config enable-authenticator-manager="true">
<sec:config>
<sec:firewall name="main">
<custom xmlns="http://example.com/schema" />
</sec:firewall>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
http://symfony.com/schema/dic/security
https://symfony.com/schema/dic/security/security-1.0.xsd">

<sec:config enable-authenticator-manager="true">
<sec:config>
<sec:firewall name="main">
<sec:custom />
</sec:firewall>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
http://symfony.com/schema/dic/security
https://symfony.com/schema/dic/security/security-1.0.xsd">

<sec:config enable-authenticator-manager="true">
<sec:config>
<sec:provider name="foo">
<custom xmlns="http://example.com/schema" />
</sec:provider>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
http://symfony.com/schema/dic/security
https://symfony.com/schema/dic/security/security-1.0.xsd">

<sec:config enable-authenticator-manager="true">
<sec:config>
<sec:provider name="foo">
<sec:custom />
</sec:provider>
Expand Down

0 comments on commit 620be16

Please sign in to comment.