Passed
Push — master ( 109e7c...79a79c )
by Thomas Mauro
02:15
created
src/Factory/MessageBusFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
      */
41 41
     public static function __callStatic(string $name, array $arguments): MessageBusInterface
42 42
     {
43
-        if (! array_key_exists(0, $arguments) || ! $arguments[0] instanceof ContainerInterface) {
43
+        if (!array_key_exists(0, $arguments) || !$arguments[0] instanceof ContainerInterface) {
44 44
             throw new InvalidArgumentException(sprintf(
45 45
                 'The first argument must be of type %s',
46 46
                 ContainerInterface::class
Please login to merge, or discard this patch.
src/Middleware/DoctrinePingConnectionMiddleware.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
             $connection->close();
43 43
         }
44 44
 
45
-        if (! $entityManager->isOpen()) {
45
+        if (!$entityManager->isOpen()) {
46 46
             $this->managerRegistry->resetManager($this->entityManagerName);
47 47
         }
48 48
     }
Please login to merge, or discard this patch.