| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | class ParserMessageProxy extends ParserMimePartProxy |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @var int maintains the character length of the last line separator, |
||
| 20 | * typically 2 for CRLF, to keep track of the correct 'end' position |
||
| 21 | * for a part because the CRLF before a boundary is considered part of |
||
| 22 | * the boundary. |
||
| 23 | */ |
||
| 24 | protected $lastLineEndingLength = 0; |
||
| 25 | |||
| 26 | public function getLastLineEndingLength() |
||
| 27 | { |
||
| 28 | return $this->lastLineEndingLength; |
||
| 29 | } |
||
| 30 | |||
| 31 | public function setLastLineEndingLength($lastLineEndingLength) |
||
| 34 | } |
||
| 35 | } |
||
| 36 |