update EOL constant to newer PHP_EOL

This commit is contained in:
Norbert Wagner 2021-03-08 14:05:34 +01:00
parent 29db532049
commit 8d938fc326
1 changed files with 2 additions and 2 deletions

View File

@ -32,8 +32,8 @@ class SettingsWriter
private $settings;
private $indent = 0;
private $start = '<?php return'.EOL.'['.EOL;
private $end = '];'.EOL;
private $start = '<?php return'.PHP_EOL.'['.PHP_EOL;
private $end = '];'.PHP_EOL;
private $handle;