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 d016bad commit 29652ecCopy full SHA for 29652ec
1 file changed
src/Exceptions/InvalidWorkflowDefinitionException.php
@@ -153,6 +153,7 @@ public static function invalidRetryAttempts(int $attempts): static
153
public static function invalidTimeout(mixed $timeout): static
154
{
155
$timeoutStr = $timeout === null ? 'null' : (string) $timeout;
156
+
157
return new self(
158
message: "Invalid timeout: {$timeoutStr}. Timeout must be a positive integer, valid time string (e.g., '30s', '5m'), or null.",
159
definition: ['provided_timeout' => $timeout],
0 commit comments