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