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 4e83270 commit 60ba0f4Copy full SHA for 60ba0f4
src/RoadRunnerStore.php
@@ -24,6 +24,8 @@ public function __construct(
24
private readonly float $initialTtl = 300.0,
25
private readonly float $initialWaitTtl = 0,
26
) {
27
+ \assert($this->initialTtl >= 0);
28
+ \assert($this->initialWaitTtl >= 0);
29
}
30
31
public function save(Key $key): void
0 commit comments