Sfoglia il codice sorgente

[YAML] removed echoln() function (they are other means to achieve the same thing more elegantly)

Dennis Benkert 15 anni fa
parent
commit
dd5c73b5db
1 ha cambiato i file con 0 aggiunte e 10 eliminazioni
  1. 0 10
      src/Symfony/Components/YAML/YAML.php

+ 0 - 10
src/Symfony/Components/YAML/YAML.php

@@ -119,13 +119,3 @@ class YAML
     return $yaml->dump($array, $inline);
   }
 }
-
-/**
- * Wraps echo to automatically provide a newline.
- *
- * @param string $string The string to echo with new line
- */
-function echoln($string)
-{
-  echo $string."\n";
-}