Replace "\n" with PHP_EOL

refs #4615
This commit is contained in:
Jannis Moßhammer 2013-08-27 18:49:30 +02:00
parent 874b163009
commit e3f9d1b6bd

View File

@ -81,7 +81,7 @@ class IniEditor
$content, $content,
array $options = array() array $options = array()
) { ) {
$this->text = explode("\n", $content); $this->text = explode(PHP_EOL, $content);
$this->valueIndentation = array_key_exists('valueIndentation', $options) $this->valueIndentation = array_key_exists('valueIndentation', $options)
? $options['valueIndentation'] : 19; ? $options['valueIndentation'] : 19;
$this->commentIndentation = array_key_exists('commentIndentation', $options) $this->commentIndentation = array_key_exists('commentIndentation', $options)
@ -337,7 +337,7 @@ class IniEditor
public function getText() public function getText()
{ {
$this->cleanUpWhitespaces(); $this->cleanUpWhitespaces();
return implode("\n", $this->text); return implode(PHP_EOL, $this->text);
} }
/** /**
@ -370,7 +370,7 @@ class IniEditor
* Refresh section separators * Refresh section separators
*/ */
if ($i !== 0 && $this->sectionSeparators > 0) { if ($i !== 0 && $this->sectionSeparators > 0) {
$this->insertAtLine($i + 1, str_repeat("\n", $this->sectionSeparators - 1)); $this->insertAtLine($i + 1, str_repeat(PHP_EOL, $this->sectionSeparators - 1));
} }
} }
} }