Yaml Tweks for Insights.

This commit is contained in:
Andrés Montañez 2013-12-19 16:39:28 -02:00
parent d6e7e5b6ab
commit a3171c59dd
7 changed files with 17 additions and 4 deletions

View file

@ -11,6 +11,8 @@
namespace Symfony\Component\Yaml;
use Symfony\Component\Yaml\Inline;
/**
* Dumper dumps PHP variables to YAML strings.
*

View file

@ -11,6 +11,8 @@
namespace Symfony\Component\Yaml\Exception;
use Symfony\Component\Yaml\Exception\RuntimeException;
/**
* Exception class thrown when an error occurs during dumping.
*

View file

@ -11,6 +11,8 @@
namespace Symfony\Component\Yaml\Exception;
use Symfony\Component\Yaml\Exception\RuntimeException;
if (!defined('JSON_UNESCAPED_UNICODE')) {
define('JSON_UNESCAPED_SLASHES', 64);
define('JSON_UNESCAPED_UNICODE', 256);

View file

@ -11,6 +11,8 @@
namespace Symfony\Component\Yaml\Exception;
use Symfony\Component\Yaml\Exception\ExceptionInterface;
/**
* Exception class thrown when an error occurs during parsing.
*

View file

@ -10,6 +10,8 @@
namespace Symfony\Component\Yaml;
use Symfony\Component\Yaml\Escaper;
use Symfony\Component\Yaml\Unescaper;
use Symfony\Component\Yaml\Exception\ParseException;
use Symfony\Component\Yaml\Exception\DumpException;

View file

@ -10,6 +10,7 @@
namespace Symfony\Component\Yaml;
use Symfony\Component\Yaml\Inline;
use Symfony\Component\Yaml\Exception\ParseException;
/**
@ -90,7 +91,7 @@ class Parser
// array
if (!isset($values['value']) || '' == trim($values['value'], ' ') || 0 === strpos(ltrim($values['value'], ' '), '#')) {
$c = $this->getRealCurrentLineNb() + 1;
$parser = new Parser($c);
$parser = new self($c);
$parser->refs =& $this->refs;
$data[] = $parser->parse($this->getNextEmbedBlock(), $exceptionOnInvalidType, $objectSupport);
} else {
@ -100,7 +101,7 @@ class Parser
) {
// this is a compact notation element, add to next block and parse
$c = $this->getRealCurrentLineNb();
$parser = new Parser($c);
$parser = new self($c);
$parser->refs =& $this->refs;
$block = $values['value'];
@ -143,7 +144,7 @@ class Parser
$value = $this->getNextEmbedBlock();
}
$c = $this->getRealCurrentLineNb() + 1;
$parser = new Parser($c);
$parser = new self($c);
$parser->refs =& $this->refs;
$parsed = $parser->parse($value, $exceptionOnInvalidType, $objectSupport);
@ -180,7 +181,7 @@ class Parser
$data[$key] = null;
} else {
$c = $this->getRealCurrentLineNb() + 1;
$parser = new Parser($c);
$parser = new self($c);
$parser->refs =& $this->refs;
$data[$key] = $parser->parse($this->getNextEmbedBlock(), $exceptionOnInvalidType, $objectSupport);
}

View file

@ -11,6 +11,8 @@
namespace Symfony\Component\Yaml;
use Symfony\Component\Yaml\Parser;
use Symfony\Component\Yaml\Dumper;
use Symfony\Component\Yaml\Exception\ParseException;
/**