Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
zendframework/zendframework#6775 - messageEOL should be a string
Browse files Browse the repository at this point in the history
…when set
  • Loading branch information
Ocramius committed Dec 31, 2014
1 parent 0a3ba43 commit 53f6318
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Storage/Mbox.php
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ public function __construct($params)
}

if (isset($params->messageEOL)) {
$this->messageEOL = $params->messageEOL;
$this->messageEOL = (string) $params->messageEOL;
}

$this->openMboxFile($params->filename);
Expand Down

0 comments on commit 53f6318

Please sign in to comment.