]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/Mail.php
Replace System::httpExit() by HTTPException throwing
[friendica.git] / src / Model / Mail.php
index b5841d17855e640e2855d5117b16a8db565de0c3..2d304e55f8b92142544fd65781a424af44b56880 100644 (file)
@@ -10,7 +10,6 @@ use Friendica\Core\Logger;
 use Friendica\Core\System;
 use Friendica\Core\Worker;
 use Friendica\Database\DBA;
-use Friendica\Model\Photo;
 use Friendica\Network\Probe;
 use Friendica\Util\DateTimeFormat;
 
@@ -158,7 +157,7 @@ class Mail
        }
 
        /**
-        * @param string $recipient recipient, default empty
+        * @param array  $recipient recipient, default empty
         * @param string $body      message body, default empty
         * @param string $subject   message subject, default empty
         * @param string $replyto   reply to, default empty
@@ -166,7 +165,7 @@ class Mail
         * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         * @throws \ImagickException
         */
-       public static function sendWall($recipient = '', $body = '', $subject = '', $replyto = '')
+       public static function sendWall(array $recipient = [], $body = '', $subject = '', $replyto = '')
        {
                if (!$recipient) {
                        return -1;