Fix phpcs

This commit is contained in:
Laurent Destailleur 2019-04-25 21:48:35 +02:00
parent e332288e73
commit 1dd8d9fa8f
2 changed files with 11 additions and 9 deletions

View File

@ -1820,7 +1820,8 @@ class EmailCollector extends CommonObject
* @param string $mid prefix * @param string $mid prefix
* @return array Array with number and object * @return array Array with number and object
*/ */
function getmsg($mbox, $mid) { private function getmsg($mbox, $mid)
{
// input $mbox = IMAP stream, $mid = message id // input $mbox = IMAP stream, $mid = message id
// output all the following: // output all the following:
global $charset,$htmlmsg,$plainmsg,$attachments; global $charset,$htmlmsg,$plainmsg,$attachments;
@ -1868,7 +1869,8 @@ class EmailCollector extends CommonObject
* @param string $partno Partno * @param string $partno Partno
* @return void * @return void
*/ */
private function getpart($mbox, $mid, $p, $partno) { private function getpart($mbox, $mid, $p, $partno)
{
// $partno = '1', '2', '2.1', '2.1.3', etc for multipart, 0 if simple // $partno = '1', '2', '2.1', '2.1.3', etc for multipart, 0 if simple
global $htmlmsg,$plainmsg,$charset,$attachments; global $htmlmsg,$plainmsg,$charset,$attachments;