Skip to content

Commit 116c7f0

Browse files
committed
Strict type check in RegisterListenersService
1 parent 1e4cf57 commit 116c7f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Doctrine/RegisterListenersService.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public function register(ObjectManager $manager, PagerInterface $pager, array $o
5656
});
5757
}
5858

59-
if (false == $options['debug_logging'] && $manager instanceof EntityManagerInterface) {
59+
if (false === $options['debug_logging'] && $manager instanceof EntityManagerInterface) {
6060
$configuration = $manager->getConnection()->getConfiguration();
6161
$logger = $configuration->getSQLLogger();
6262

@@ -69,7 +69,7 @@ public function register(ObjectManager $manager, PagerInterface $pager, array $o
6969
});
7070
}
7171

72-
if (false == $options['debug_logging'] && $manager instanceof DocumentManager) {
72+
if (false === $options['debug_logging'] && $manager instanceof DocumentManager) {
7373
$configuration = $manager->getConnection()->getConfiguration();
7474
$logger = $configuration->getLoggerCallable();
7575

0 commit comments

Comments
 (0)