]> git.immae.eu Git - github/shaarli/Shaarli.git/blobdiff - application/config/ConfigJson.php
Replaced PHP_EOL to "\n"
[github/shaarli/Shaarli.git] / application / config / ConfigJson.php
index c0c0dab9ab9df4ce10f0a8217ae28a88dc011483..eaa4ee3f87d153815dac5da07d18d3068f4c34b5 100644 (file)
@@ -73,7 +73,7 @@ class ConfigJson implements ConfigIO
      */
     public static function getPhpHeaders()
     {
-        return '<?php /*'. PHP_EOL;
+        return '<?php /*'. "\n";
     }
 
     /**
@@ -85,6 +85,6 @@ class ConfigJson implements ConfigIO
      */
     public static function getPhpSuffix()
     {
-        return PHP_EOL . '*/ ?>';
+        return "\n" . '*/ ?>';
     }
 }