Missing use statement should be avoided #inslight

This commit is contained in:
Andrés Montañez
2014-06-13 16:25:24 -03:00
parent 1b2188f0b1
commit 49a7e0857a
9 changed files with 19 additions and 4 deletions
+2
View File
@@ -11,6 +11,8 @@
namespace Mage\Yaml;
use Mage\Yaml\Inline;
/**
* Dumper dumps PHP variables to YAML strings.
*
+2
View File
@@ -11,6 +11,8 @@
namespace Mage\Yaml\Exception;
use Mage\Yaml\Exception\RuntimeException;
/**
* Exception class thrown when an error occurs during dumping.
*
+2
View File
@@ -11,6 +11,8 @@
namespace Mage\Yaml\Exception;
use Mage\Yaml\Exception\RuntimeException;
if (!defined('JSON_UNESCAPED_UNICODE')) {
define('JSON_UNESCAPED_SLASHES', 64);
define('JSON_UNESCAPED_UNICODE', 256);
+2
View File
@@ -11,6 +11,8 @@
namespace Mage\Yaml\Exception;
use Mage\Yaml\Exception\ExceptionInterface;
/**
* Exception class thrown when an error occurs during parsing.
*
+2
View File
@@ -11,6 +11,8 @@
namespace Mage\Yaml;
use Mage\Yaml\Escaper;
use Mage\Yaml\Unescaper;
use Mage\Yaml\Exception\ParseException;
use Mage\Yaml\Exception\DumpException;
+5 -4
View File
@@ -11,6 +11,7 @@
namespace Mage\Yaml;
use Mage\Yaml\Inline;
use Mage\Yaml\Exception\ParseException;
/**
@@ -92,7 +93,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, $objectForMap);
} else {
@@ -102,7 +103,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'];
@@ -145,7 +146,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, $objectForMap);
@@ -187,7 +188,7 @@ class Parser
}
} else {
$c = $this->getRealCurrentLineNb() + 1;
$parser = new Parser($c);
$parser = new self($c);
$parser->refs =& $this->refs;
$value = $parser->parse($this->getNextEmbedBlock(), $exceptionOnInvalidType, $objectSupport, $objectForMap);
// Spec: Keys MUST be unique; first one wins.
+2
View File
@@ -11,6 +11,8 @@
namespace Mage\Yaml;
use Mage\Yaml\Parser;
use Mage\Yaml\Dumper;
use Mage\Yaml\Exception\ParseException;
/**