We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d6bec8 commit bcc01a2Copy full SHA for bcc01a2
1 file changed
src/HealthCheck/HealthCheckChain.php
@@ -19,15 +19,15 @@
19
namespace OpenConext\MonitorBundle\HealthCheck;
20
21
use OpenConext\MonitorBundle\Value\HealthReport;
22
-use Symfony\Component\DependencyInjection\Attribute\TaggedIterator;
+use Symfony\Component\DependencyInjection\Attribute\AutowireIterator;
23
24
/**
25
* Collect HealthCheck instances and checks them for UP or DOWN status.
26
*/
27
class HealthCheckChain
28
{
29
public function __construct(
30
- #[TaggedIterator(HealthCheckInterface::class)]
+ #[AutowireIterator(HealthCheckInterface::class)]
31
private readonly iterable $healthChecks
32
) {
33
}
0 commit comments