Home
last modified time | relevance | path

Searched refs:ParseException (Results 1 – 7 of 7) sorted by relevance

/template/strap/vendor/symfony/yaml/
H A DInline.php15 use Symfony\Component\Yaml\Exception\ParseException; alias
59 * @throws ParseException
94 …throw new ParseException(sprintf('Unexpected characters near "%s".', substr($value, $i)), self::$p…
266 * @throws ParseException When malformed inline YAML string is parsed
278 …throw new ParseException(sprintf('Unexpected end of line, expected one of "%s".', implode('', $del…
281 …throw new ParseException(sprintf('Unexpected characters (%s).', substr($scalar, $i)), self::$parse…
301 …throw new ParseException(sprintf('Malformed inline YAML string: "%s".', $scalar), self::$parsedLin…
306 …throw new ParseException(sprintf('The reserved indicator "%s" cannot start a plain scalar; you nee…
320 * @throws ParseException When malformed inline YAML string is parsed
325 …throw new ParseException(sprintf('Malformed inline YAML string: "%s".', substr($scalar, $i)), self…
[all …]
H A DParser.php14 use Symfony\Component\Yaml\Exception\ParseException; alias
50 * @throws ParseException If the file could not be read or the YAML is not valid
55 throw new ParseException(sprintf('File "%s" does not exist.', $filename));
59 throw new ParseException(sprintf('File "%s" cannot be read.', $filename));
79 * @throws ParseException If the YAML is not valid
84 …throw new ParseException('The YAML value does not appear to be valid UTF-8.', -1, null, $this->fil…
155 …throw new ParseException('A YAML file cannot contain tabs as indentation.', $this->getRealCurrentL…
163 …throw new ParseException('You cannot define a sequence item when in a mapping.', $this->getRealCur…
174 …throw new ParseException('Complex mappings are not supported.', $this->getRealCurrentLineNb() + 1,…
222 …throw new ParseException('You cannot define a mapping item when in a sequence.', $this->currentLin…
[all …]
H A DYaml.php14 use Symfony\Component\Yaml\Exception\ParseException; alias
51 * @throws ParseException If the file could not be read or the YAML is not valid
74 * @throws ParseException If the YAML is not valid
H A DCHANGELOG.md55 …* Using a mapping inside a multi-line string is deprecated and will throw a `ParseException` in 5.…
67 * complex mappings will throw a `ParseException`
72 * duplicate mapping keys throw a `ParseException`
73 * non-string mapping keys throw a `ParseException`, use the `Yaml::PARSE_KEYS_AS_STRINGS`
75 * `%` at the beginning of an unquoted string throw a `ParseException`
77 `ParseException`
114 deprecated and will throw a `ParseException` in Symfony 4.0.
117 Mapping keys that are no strings will lead to a `ParseException` in Symfony
147 * Omitting the key of a mapping is deprecated and will throw a `ParseException` in Symfony 4.0.
159 when the mapping key is not quoted and will lead to a `ParseException` in
[all …]
H A DUnescaper.php14 use Symfony\Component\Yaml\Exception\ParseException; alias
111 throw new ParseException(sprintf('Found unknown escape character "%s".', $value));
/template/strap/vendor/symfony/yaml/Command/
H A DLintCommand.php25 use Symfony\Component\Yaml\Exception\ParseException; alias
140 throw new ParseException($message, $this->getParser()->getRealCurrentLineNb() + 1);
148 } catch (ParseException $e) {
/template/strap/vendor/symfony/yaml/Exception/
H A DParseException.php19 class ParseException extends RuntimeException class