Skip to content

Commit

Permalink
NGSTACK-836: add strict types declaration and fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
pspanja committed May 29, 2024
1 parent 1523364 commit 8837723
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/Container/Compiler/ParentChildIndexingPass.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Netgen\IbexaSearchExtra\Container\Compiler;

use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
Expand All @@ -26,6 +28,5 @@ public function process(ContainerBuilder $container) :void
$definition = $container->getDefinition($serviceId);
$definition->addTag(self::MessageHandlerTag);
}

}
}
}

0 comments on commit 8837723

Please sign in to comment.