10000 Fixing my reversed logic! · symfony/symfony@5296f01 · GitHub
[go: up one dir, main page]

Skip to content

Commit 5296f01

Browse files
committed
Fixing my reversed logic!
1 parent f679a2a commit 5296f01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/DependencyInjection/Compiler/ServiceAnnotationsPass.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class ServiceAnnotationsPass implements CompilerPassInterface
3535
*/
3636
public function process(ContainerBuilder $container)
3737
{
38-
if (class_exists(AnnotationReader::class)) {
38+
if (!class_exists(AnnotationReader::class)) {
3939
return;
4040
}
4141

0 commit comments

Comments
 (0)
0