File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11<?php namespace Illuminate \Mail ;
22
33use Illuminate \Foundation \Application ;
4- use Illuminate \Mail \Transport \LogTransportV2 ;
4+ use Illuminate \Mail \Transport \LogTransport ;
55use Illuminate \Support \Arr ;
66use Illuminate \Support \ServiceProvider ;
77//use Symfony\Component\HttpClient\HttpClient;
@@ -219,7 +219,7 @@ protected function registerMailTransport(array $config): void
219219 */
220220 protected function registerLogTransport (array $ config ): void
221221 {
222- $ this ->app ->bindShared ('symfony.transport ' , fn ($ app ) => new LogTransportV2 ($ app ->make ('Psr\Log\LoggerInterface ' )));
222+ $ this ->app ->bindShared ('symfony.transport ' , fn ($ app ) => new LogTransport ($ app ->make ('Psr\Log\LoggerInterface ' )));
223223 }
224224
225225// /**
Original file line number Diff line number Diff line change 88use Symfony \Component \Mailer \Transport \TransportInterface ;
99use Symfony \Component \Mime \RawMessage ;
1010
11- class LogTransportV2 implements TransportInterface
11+ class LogTransport implements TransportInterface
1212{
1313 protected LoggerInterface $ logger ;
1414
You can’t perform that action at this time.
0 commit comments