File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ public function create(Dsn $dsn): TransportInterface
2929 throw new UnsupportedSchemeException ($ dsn , 'native ' , $ this ->getSupportedSchemes ());
3030 }
3131
32- if ($ sendMailPath = \ ini_get ('sendmail_path ' )) {
32+ if ($ sendMailPath = ini_get ('sendmail_path ' )) {
3333 return new SendmailTransport ($ sendMailPath , $ this ->dispatcher , $ this ->logger );
3434 }
3535
@@ -39,8 +39,8 @@ public function create(Dsn $dsn): TransportInterface
3939
4040 // Only for windows hosts; at this point non-windows
4141 // host have already thrown an exception or returned a transport
42- $ host = \ ini_get ('SMTP ' );
43- $ port = (int ) \ ini_get ('smtp_port ' );
42+ $ host = ini_get ('SMTP ' );
43+ $ port = (int ) ini_get ('smtp_port ' );
4444
4545 if (!$ host || !$ port ) {
4646 throw new TransportException ('smtp or smtp_port is not configured in php.ini. ' );
You can’t perform that action at this time.
0 commit comments