Skip to content

Commit 43dfb36

Browse files
authored
Merge pull request #639 from php-enqueue/multi-client-configuration
Fix compiler pass
2 parents 5ed0f4a + 31ab5bb commit 43dfb36

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Symfony/DependencyInjection/MonitoringFactory.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
*/
1919
final class MonitoringFactory
2020
{
21+
public const MODULE = 'monitoring';
22+
2123
/**
2224
* @var DiUtils
2325
*/
@@ -29,7 +31,7 @@ public function __construct(string $name)
2931
throw new \InvalidArgumentException('The name could not be empty.');
3032
}
3133

32-
$this->diUtils = DiUtils::create('monitoring', $name);
34+
$this->diUtils = DiUtils::create(self::MODULE, $name);
3335
}
3436

3537
public static function getConfiguration(string $name = 'monitoring'): ArrayNodeDefinition

0 commit comments

Comments
 (0)