@@ -363,7 +363,7 @@ public function setConnectionArgs(int $options = 0, int $retriesNum = 0, array $
363
363
$ this ->imapRetriesNum = $ retriesNum ;
364
364
}
365
365
366
- if (\is_array ($ params ) and \count ($ params ) > 0 ) {
366
+ if (\is_array ($ params ) && \count ($ params ) > 0 ) {
367
367
$ supported_params = ['DISABLE_AUTHENTICATOR ' ];
368
368
369
369
foreach (\array_keys ($ params ) as $ key ) {
@@ -875,16 +875,16 @@ public function getMailsInfo(array $mailsIds): array
875
875
throw new UnexpectedValueException ('to property at index ' .(string ) $ index .' of argument 1 passed to ' .__METHOD__ .'() was not a string! ' );
876
876
}
877
877
878
- if (isset ($ mail ->subject ) and !empty (\trim ($ mail ->subject ))) {
878
+ if (isset ($ mail ->subject ) && !empty (\trim ($ mail ->subject ))) {
879
879
$ mail ->subject = $ this ->decodeMimeStr ($ mail ->subject );
880
880
}
881
- if (isset ($ mail ->from ) and !empty (\trim ($ mail ->from ))) {
881
+ if (isset ($ mail ->from ) && !empty (\trim ($ mail ->from ))) {
882
882
$ mail ->from = $ this ->decodeMimeStr ($ mail ->from );
883
883
}
884
- if (isset ($ mail ->sender ) and !empty (\trim ($ mail ->sender ))) {
884
+ if (isset ($ mail ->sender ) && !empty (\trim ($ mail ->sender ))) {
885
885
$ mail ->sender = $ this ->decodeMimeStr ($ mail ->sender );
886
886
}
887
- if (isset ($ mail ->to ) and !empty (\trim ($ mail ->to ))) {
887
+ if (isset ($ mail ->to ) && !empty (\trim ($ mail ->to ))) {
888
888
$ mail ->to = $ this ->decodeMimeStr ($ mail ->to );
889
889
}
890
890
}
@@ -951,7 +951,7 @@ public function getMailboxInfo(): object
951
951
public function sortMails (
952
952
int $ criteria = SORTARRIVAL ,
953
953
bool $ reverse = true ,
954
- ? string $ searchCriteria = 'ALL ' ,
954
+ ?string $ searchCriteria = 'ALL ' ,
955
955
string $ charset = null
956
956
): array {
957
957
return Imap::sort (
@@ -1100,22 +1100,22 @@ public function getMailHeader(int $mailId): IncomingMailHeader
1100
1100
$ header ->precedence = (\preg_match ("/Precedence\:(.*)/i " , $ headersRaw , $ matches )) ? \trim ($ matches [1 ]) : '' ;
1101
1101
$ header ->failedRecipients = (\preg_match ("/Failed-Recipients\:(.*)/i " , $ headersRaw , $ matches )) ? \trim ($ matches [1 ]) : '' ;
1102
1102
1103
- if (isset ($ head ->date ) and !empty (\trim ($ head ->date ))) {
1103
+ if (isset ($ head ->date ) && !empty (\trim ($ head ->date ))) {
1104
1104
$ header ->date = self ::parseDateTime ($ head ->date );
1105
- } elseif (isset ($ head ->Date ) and !empty (\trim ($ head ->Date ))) {
1105
+ } elseif (isset ($ head ->Date ) && !empty (\trim ($ head ->Date ))) {
1106
1106
$ header ->date = self ::parseDateTime ($ head ->Date );
1107
1107
} else {
1108
1108
$ now = new DateTime ();
1109
1109
$ header ->date = self ::parseDateTime ($ now ->format ('Y-m-d H:i:s ' ));
1110
1110
}
1111
1111
1112
- $ header ->subject = (isset ($ head ->subject ) and !empty (\trim ($ head ->subject ))) ? $ this ->decodeMimeStr ($ head ->subject ) : null ;
1113
- if (isset ($ head ->from ) and !empty ($ head ->from )) {
1112
+ $ header ->subject = (isset ($ head ->subject ) && !empty (\trim ($ head ->subject ))) ? $ this ->decodeMimeStr ($ head ->subject ) : null ;
1113
+ if (isset ($ head ->from ) && !empty ($ head ->from )) {
1114
1114
list ($ header ->fromHost , $ header ->fromName , $ header ->fromAddress ) = $ this ->possiblyGetHostNameAndAddress ($ head ->from );
1115
1115
} elseif (\preg_match ('/smtp.mailfrom=[-0-9a-zA-Z.+_]+@[-0-9a-zA-Z.+_]+.[a-zA-Z]{2,4}/ ' , $ headersRaw , $ matches )) {
1116
1116
$ header ->fromAddress = \substr ($ matches [0 ], 14 );
1117
1117
}
1118
- if (isset ($ head ->sender ) and !empty ($ head ->sender )) {
1118
+ if (isset ($ head ->sender ) && !empty ($ head ->sender )) {
1119
1119
list ($ header ->senderHost , $ header ->senderName , $ header ->senderAddress ) = $ this ->possiblyGetHostNameAndAddress ($ head ->sender );
1120
1120
}
1121
1121
if (isset ($ head ->to )) {
@@ -1255,10 +1255,10 @@ public function downloadAttachment(DataPartInfo $dataInfo, array $params, object
1255
1255
$ fileName = \strtolower ($ partStructure ->subtype ).'.eml ' ;
1256
1256
} elseif ('ALTERNATIVE ' == $ partStructure ->subtype ) {
1257
1257
$ fileName = \strtolower ($ partStructure ->subtype ).'.eml ' ;
1258
- } elseif ((!isset ($ params ['filename ' ]) or empty (\trim ($ params ['filename ' ]))) && (!isset ($ params ['name ' ]) or empty (\trim ($ params ['name ' ])))) {
1258
+ } elseif ((!isset ($ params ['filename ' ]) || empty (\trim ($ params ['filename ' ]))) && (!isset ($ params ['name ' ]) || empty (\trim ($ params ['name ' ])))) {
1259
1259
$ fileName = \strtolower ($ partStructure ->subtype );
1260
1260
} else {
1261
- $ fileName = (isset ($ params ['filename ' ]) and !empty (\trim ($ params ['filename ' ]))) ? $ params ['filename ' ] : $ params ['name ' ];
1261
+ $ fileName = (isset ($ params ['filename ' ]) && !empty (\trim ($ params ['filename ' ]))) ? $ params ['filename ' ] : $ params ['name ' ];
1262
1262
$ fileName = $ this ->decodeMimeStr ($ fileName , $ this ->serverEncoding );
1263
1263
$ fileName = $ this ->decodeRFC2231 ($ fileName );
1264
1264
}
@@ -1300,7 +1300,7 @@ public function downloadAttachment(DataPartInfo $dataInfo, array $params, object
1300
1300
if (isset ($ charset ) && !\is_string ($ charset )) {
1301
1301
throw new InvalidArgumentException ('Argument 2 passed to ' .__METHOD__ .'() must specify charset as a string when specified! ' );
1302
1302
}
1303
- $ attachment ->charset = (isset ($ charset ) and !empty (\trim ($ charset ))) ? $ charset : null ;
1303
+ $ attachment ->charset = (isset ($ charset ) && !empty (\trim ($ charset ))) ? $ charset : null ;
1304
1304
$ attachment ->emlOrigin = $ emlOrigin ;
1305
1305
1306
1306
$ attachment ->addDataPartInfo ($ dataInfo );
@@ -1807,7 +1807,7 @@ protected function possiblyGetEmailAndNameFromRecipient(object $recipient): ?arr
1807
1807
1808
1808
if ('' !== \trim ($ recipientMailbox ) && '' !== \trim ($ recipientHost )) {
1809
1809
$ recipientEmail = \strtolower ($ recipientMailbox .'@ ' .$ recipientHost );
1810
- $ recipientName = (\is_string ($ recipientPersonal ) and '' !== \trim ($ recipientPersonal )) ? $ this ->decodeMimeStr ($ recipientPersonal ) : null ;
1810
+ $ recipientName = (\is_string ($ recipientPersonal ) && '' !== \trim ($ recipientPersonal )) ? $ this ->decodeMimeStr ($ recipientPersonal ) : null ;
1811
1811
1812
1812
return [
1813
1813
$ recipientEmail ,
0 commit comments