Skip to content

Commit a925110

Browse files
authored
Pass LoggerInterface when constructing RoundrobinTransport instance (#57956)
1 parent a7f2e66 commit a925110

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Illuminate/Mail/MailManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ protected function createRoundrobinTransportOfClass(array $config, string $class
430430
: $this->createSymfonyTransport($config);
431431
}
432432

433-
return new $class($transports, $config['retry_after'] ?? 60);
433+
return new $class($transports, $config['retry_after'] ?? 60, $this->app->make(LoggerInterface::class));
434434
}
435435

436436
/**

0 commit comments

Comments
 (0)