Author: fabien
Date: 2010-02-02 09:30:05 +0100 (Tue, 02 Feb 2010)
New Revision: 27409
Modified:
branches/2.0/src/Symfony/Components/YAML/Parser.php
branches/2.0/src/Symfony/Components/YAML/YAML.php
Log:
Merge branch 'master' of git://github.com/symfony/symfony
Modified: branches/2.0/src/Symfony/Components/YAML/Parser.php
===================================================================
--- branches/2.0/src/Symfony/Components/YAML/Parser.php 2010-02-02 07:43:55 UTC
(rev 27408)
+++ branches/2.0/src/Symfony/Components/YAML/Parser.php 2010-02-02 08:30:05 UTC
(rev 27409)
@@ -19,13 +19,12 @@
*/
class Parser
{
- protected
- $value = '',
- $offset = 0,
- $lines = array(),
- $currentLineNb = -1,
- $currentLine = '',
- $refs = array();
+ protected $value = '';
+ protected $offset = 0;
+ protected $lines = array();
+ protected $currentLineNb = -1;
+ protected $currentLine = '';
+ protected $refs = array();
/**
* Constructor
Modified: branches/2.0/src/Symfony/Components/YAML/YAML.php
===================================================================
--- branches/2.0/src/Symfony/Components/YAML/YAML.php 2010-02-02 07:43:55 UTC
(rev 27408)
+++ branches/2.0/src/Symfony/Components/YAML/YAML.php 2010-02-02 08:30:05 UTC
(rev 27409)
@@ -19,8 +19,7 @@
*/
class YAML
{
- static protected
- $spec = '1.2';
+ static protected $spec = '1.2';
/**
* Sets the YAML specification version to use.
@@ -120,13 +119,3 @@
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";
-}
--
You received this message because you are subscribed to the Google Groups
"symfony SVN" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/symfony-svn?hl=en.