[Yaml] marked some classes as being internal

This commit is contained in:
Fabien Potencier 2015-10-12 13:16:35 +02:00
parent 24529f66c7
commit 29e789301a
3 changed files with 6 additions and 0 deletions

View File

@ -16,6 +16,8 @@ namespace Symfony\Component\Yaml;
* YAML strings. * YAML strings.
* *
* @author Matthew Lewinski <matthew@lewinski.org> * @author Matthew Lewinski <matthew@lewinski.org>
*
* @internal
*/ */
class Escaper class Escaper
{ {

View File

@ -204,6 +204,8 @@ class Inline
* @return string A YAML string * @return string A YAML string
* *
* @throws ParseException When malformed inline YAML string is parsed * @throws ParseException When malformed inline YAML string is parsed
*
* @internal
*/ */
public static function parseScalar($scalar, $delimiters = null, $stringDelimiters = array('"', "'"), &$i = 0, $evaluate = true, $references = array()) public static function parseScalar($scalar, $delimiters = null, $stringDelimiters = array('"', "'"), &$i = 0, $evaluate = true, $references = array())
{ {

View File

@ -16,6 +16,8 @@ namespace Symfony\Component\Yaml;
* YAML strings. * YAML strings.
* *
* @author Matthew Lewinski <matthew@lewinski.org> * @author Matthew Lewinski <matthew@lewinski.org>
*
* @internal
*/ */
class Unescaper class Unescaper
{ {