Skip to content

Commit

Permalink
cs
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasVotruba committed Jan 16, 2024
1 parent 0da1af3 commit 2466eb2
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,6 @@ public function getRuleDefinition(): RuleDefinition
return static function (ContainerConfigurator $containerConfigurator): void {
$containerConfigurator->extension('security', [
'providers' => [
'webservice' => [
'id' => LoginServiceUserProvider::class,
],
],
'firewalls' => [
'dev' => [
'pattern' => '^/(_(profiler|wdt)|css|images|js)/',
Expand All @@ -84,9 +79,6 @@ public function getRuleDefinition(): RuleDefinition
use Symfony\Config\SecurityConfig;
return static function (SecurityConfig $securityConfig): void {
$securityConfig->provider('webservice')
->id(LoginServiceUserProvider::class);
$securityConfig->firewall('dev')
->pattern('^/(_(profiler|wdt)|css|images|js)/')
->security(false);
Expand Down

0 comments on commit 2466eb2

Please sign in to comment.