We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5ed0f4a + 31ab5bb commit 43dfb36Copy full SHA for 43dfb36
Symfony/DependencyInjection/MonitoringFactory.php
@@ -18,6 +18,8 @@
18
*/
19
final class MonitoringFactory
20
{
21
+ public const MODULE = 'monitoring';
22
+
23
/**
24
* @var DiUtils
25
@@ -29,7 +31,7 @@ public function __construct(string $name)
29
31
throw new \InvalidArgumentException('The name could not be empty.');
30
32
}
33
- $this->diUtils = DiUtils::create('monitoring', $name);
34
+ $this->diUtils = DiUtils::create(self::MODULE, $name);
35
36
37
public static function getConfiguration(string $name = 'monitoring'): ArrayNodeDefinition
0 commit comments