소스 검색

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

Dennis Benkert 15 년 전
부모
커밋
dd5c73b5db
1개의 변경된 파일0개의 추가작업 그리고 10개의 파일을 삭제
  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";
-}