We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dea473d commit 0620e11Copy full SHA for 0620e11
Tests/DependencyInjection/ConfigurationTest.php
@@ -22,6 +22,7 @@
22
use Symfony\Component\Mailer\Mailer;
23
use Symfony\Component\Messenger\MessageBusInterface;
24
use Symfony\Component\Notifier\Notifier;
25
+use Symfony\Component\RateLimiter\Policy\TokenBucketLimiter;
26
use Symfony\Component\Uid\Factory\UuidFactory;
27
28
class ConfigurationTest extends TestCase
@@ -563,7 +564,7 @@ class_exists(SemaphoreStore::class) && SemaphoreStore::isSupported() ? 'semaphor
563
564
'private_headers' => [],
565
],
566
'rate_limiter' => [
- 'enabled' => false,
567
+ 'enabled' => !class_exists(FullStack::class) && class_exists(TokenBucketLimiter::class),
568
'limiters' => [],
569
570
'uid' => [
0 commit comments