Skip to content

Commit 46d85e1

Browse files
committed
hub_id is available from 3.7 onwards
1 parent 203a8b4 commit 46d85e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/End2End/App/KernelForBufferTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ public function registerContainerConfiguration(LoaderInterface $loader): void
2323
}
2424

2525
/**
26-
* Monolog Bundle supports hub_id from version 3.5 onwards.
26+
* Monolog Bundle supports hub_id from version 3.7 onwards.
2727
*/
2828
private function supportsHubId(): bool
2929
{
3030
try {
3131
if (class_exists('Composer\InstalledVersions')) {
3232
$version = \Composer\InstalledVersions::getVersion('symfony/monolog-bundle');
33-
if ($version && version_compare($version, '3.5.0', '>=')) {
33+
if ($version && version_compare($version, '3.7.0', '>=')) {
3434
return true;
3535
}
3636
}

0 commit comments

Comments
 (0)