Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit be75bd9

Browse files
authored
Fixing wrong class_exists on interface
1 parent 020664e commit be75bd9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Configuration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ private function addCsrfSection(ArrayNodeDefinition $rootNode)
143143
$rootNode
144144
->children()
145145
->arrayNode('csrf_protection')
146-
->{!class_exists(FullStack::class) && class_exists(CsrfTokenManagerInterface::class) ? 'canBeDisabled' : 'canBeEnabled'}()
146+
->{!class_exists(FullStack::class) && interface_exists(CsrfTokenManagerInterface::class) ? 'canBeDisabled' : 'canBeEnabled'}()
147147
->end()
148148
->end()
149149
;

0 commit comments

Comments
 (0)