Skip to content

Commit 1b18e14

Browse files
committed
multi client configuration
1 parent 6546bb2 commit 1b18e14

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

GenericStatsStorageFactory.php

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,7 @@ public function create($config): StatsStorage
2828
return new $storageClass(1 === count($config) ? $config['dsn'] : $config);
2929
}
3030

31-
throw new \LogicException(sprintf(
32-
'A given scheme "%s" is not supported.',
33-
$dsn->getScheme(),
34-
Resources::class
35-
));
31+
throw new \LogicException(sprintf('A given scheme "%s" is not supported.', $dsn->getScheme()));
3632
}
3733

3834
private function findStorageClass(Dsn $dsn, array $factories): ?string

Resources.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
namespace Enqueue\Monitoring;
44

5-
65
final class Resources
76
{
87
/**

0 commit comments

Comments
 (0)