Skip to content

Commit

Permalink
Fix return type in phpdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
alecpl committed Jan 19, 2024
1 parent 895f9be commit fb8f9c4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Mail/mimePart.php
Original file line number Diff line number Diff line change
Expand Up @@ -302,11 +302,11 @@ public function __construct($body = '', $params = array())
*
* @param string $boundary Pre-defined boundary string
*
* @return An associative array containing two elements,
* body and headers. The headers element is itself
* an indexed array. On error returns PEAR error object.
* @return array An associative array containing two elements,
* body and headers. The headers element is itself
* an indexed array. On error returns PEAR error object.
*/
public function encode($boundary=null)
public function encode($boundary = null)
{
$encoded =& $this->encoded;

Expand Down

0 comments on commit fb8f9c4

Please sign in to comment.