Browse Source

Missing use statement should be avoided #inslight

1.0
Andrés Montañez 10 years ago
parent
commit
49a7e0857a
  1. 1
      Mage/Task/BuiltIn/Deployment/Strategy/RsyncTask.php
  2. 1
      Mage/Task/BuiltIn/Deployment/Strategy/TarGzTask.php
  3. 2
      Mage/Yaml/Dumper.php
  4. 2
      Mage/Yaml/Exception/DumpException.php
  5. 2
      Mage/Yaml/Exception/ParseException.php
  6. 2
      Mage/Yaml/Exception/RuntimeException.php
  7. 2
      Mage/Yaml/Inline.php
  8. 9
      Mage/Yaml/Parser.php
  9. 2
      Mage/Yaml/Yaml.php

1
Mage/Task/BuiltIn/Deployment/Strategy/RsyncTask.php

@ -10,6 +10,7 @@
namespace Mage\Task\BuiltIn\Deployment\Strategy; namespace Mage\Task\BuiltIn\Deployment\Strategy;
use Mage\Task\BuiltIn\Deployment\Strategy\BaseStrategyTaskAbstract;
use Mage\Task\Releases\IsReleaseAware; use Mage\Task\Releases\IsReleaseAware;
/** /**

1
Mage/Task/BuiltIn/Deployment/Strategy/TarGzTask.php

@ -10,6 +10,7 @@
namespace Mage\Task\BuiltIn\Deployment\Strategy; namespace Mage\Task\BuiltIn\Deployment\Strategy;
use Mage\Task\BuiltIn\Deployment\Strategy\BaseStrategyTaskAbstract;
use Mage\Task\Releases\IsReleaseAware; use Mage\Task\Releases\IsReleaseAware;
/** /**

2
Mage/Yaml/Dumper.php

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

2
Mage/Yaml/Exception/DumpException.php

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

2
Mage/Yaml/Exception/ParseException.php

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

2
Mage/Yaml/Exception/RuntimeException.php

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

2
Mage/Yaml/Inline.php

@ -11,6 +11,8 @@
namespace Mage\Yaml; namespace Mage\Yaml;
use Mage\Yaml\Escaper;
use Mage\Yaml\Unescaper;
use Mage\Yaml\Exception\ParseException; use Mage\Yaml\Exception\ParseException;
use Mage\Yaml\Exception\DumpException; use Mage\Yaml\Exception\DumpException;

9
Mage/Yaml/Parser.php

@ -11,6 +11,7 @@
namespace Mage\Yaml; namespace Mage\Yaml;
use Mage\Yaml\Inline;
use Mage\Yaml\Exception\ParseException; use Mage\Yaml\Exception\ParseException;
/** /**
@ -92,7 +93,7 @@ class Parser
// array // array
if (!isset($values['value']) || '' == trim($values['value'], ' ') || 0 === strpos(ltrim($values['value'], ' '), '#')) { if (!isset($values['value']) || '' == trim($values['value'], ' ') || 0 === strpos(ltrim($values['value'], ' '), '#')) {
$c = $this->getRealCurrentLineNb() + 1; $c = $this->getRealCurrentLineNb() + 1;
$parser = new Parser($c); $parser = new self($c);
$parser->refs =& $this->refs; $parser->refs =& $this->refs;
$data[] = $parser->parse($this->getNextEmbedBlock(), $exceptionOnInvalidType, $objectSupport, $objectForMap); $data[] = $parser->parse($this->getNextEmbedBlock(), $exceptionOnInvalidType, $objectSupport, $objectForMap);
} else { } else {
@ -102,7 +103,7 @@ class Parser
) { ) {
// this is a compact notation element, add to next block and parse // this is a compact notation element, add to next block and parse
$c = $this->getRealCurrentLineNb(); $c = $this->getRealCurrentLineNb();
$parser = new Parser($c); $parser = new self($c);
$parser->refs =& $this->refs; $parser->refs =& $this->refs;
$block = $values['value']; $block = $values['value'];
@ -145,7 +146,7 @@ class Parser
$value = $this->getNextEmbedBlock(); $value = $this->getNextEmbedBlock();
} }
$c = $this->getRealCurrentLineNb() + 1; $c = $this->getRealCurrentLineNb() + 1;
$parser = new Parser($c); $parser = new self($c);
$parser->refs =& $this->refs; $parser->refs =& $this->refs;
$parsed = $parser->parse($value, $exceptionOnInvalidType, $objectSupport, $objectForMap); $parsed = $parser->parse($value, $exceptionOnInvalidType, $objectSupport, $objectForMap);
@ -187,7 +188,7 @@ class Parser
} }
} else { } else {
$c = $this->getRealCurrentLineNb() + 1; $c = $this->getRealCurrentLineNb() + 1;
$parser = new Parser($c); $parser = new self($c);
$parser->refs =& $this->refs; $parser->refs =& $this->refs;
$value = $parser->parse($this->getNextEmbedBlock(), $exceptionOnInvalidType, $objectSupport, $objectForMap); $value = $parser->parse($this->getNextEmbedBlock(), $exceptionOnInvalidType, $objectSupport, $objectForMap);
// Spec: Keys MUST be unique; first one wins. // Spec: Keys MUST be unique; first one wins.

2
Mage/Yaml/Yaml.php

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

Loading…
Cancel
Save