Skip to content

Commit

Permalink
Fix log exception argument typing
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremycr committed Dec 6, 2023
1 parent d440ad0 commit cec42a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DataflowType/Dataflow/Dataflow.php
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ private function processItem(mixed $item): void
}
}

private function logException(\Throwable $e, ?string $index = null): void
private function logException(\Throwable $e, string|int|null $index = null): void
{
if (!isset($this->logger)) {
return;
Expand Down

0 comments on commit cec42a3

Please sign in to comment.