Skip to content
This repository was archived by the owner on Oct 2, 2019. It is now read-only.

Commit fbb3862

Browse files
committed
Fixes DocBlocks in Zend_Mime_Message
1 parent 8327157 commit fbb3862

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

library/Zend/Mime/Message.php

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,18 @@
3737
*/
3838
class Zend_Mime_Message
3939
{
40+
/**
41+
* The Zend_Mime_Parts of the message
42+
*
43+
* @var array
44+
*/
4045
protected $_parts = array();
4146

47+
/**
48+
* The Zend_Mime object for the message
49+
*
50+
* @var Zend_Mime|null
51+
*/
4252
protected $_mime = null;
4353

4454
/**
@@ -169,7 +179,8 @@ public function getPartHeadersArray($partnum)
169179
/**
170180
* Get the headers of a given part as a string
171181
*
172-
* @param int $partnum
182+
* @param int $partnum
183+
* @param string $EOL
173184
* @return string
174185
*/
175186
public function getPartHeaders($partnum, $EOL = Zend_Mime::LINEEND)
@@ -180,7 +191,8 @@ public function getPartHeaders($partnum, $EOL = Zend_Mime::LINEEND)
180191
/**
181192
* Get the (encoded) content of a given part as a string
182193
*
183-
* @param int $partnum
194+
* @param int $partnum
195+
* @param string $EOL
184196
* @return string
185197
*/
186198
public function getPartContent($partnum, $EOL = Zend_Mime::LINEEND)

0 commit comments

Comments
 (0)