Skip to content

Commit 117d65f

Browse files
committed
minor symfony#16210 [Yaml] marked some classes as being internal (fabpot)
This PR was merged into the 2.8 branch. Discussion ---------- [Yaml] marked some classes as being internal | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | n/a | License | MIT | Doc PR | n/a Adds `@internal` on some YAML classes. Commits ------- 29e7893 [Yaml] marked some classes as being internal
2 parents 4c223c9 + 29e7893 commit 117d65f

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

src/Symfony/Component/Yaml/Escaper.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
* YAML strings.
1717
*
1818
* @author Matthew Lewinski <[email protected]>
19+
*
20+
* @internal
1921
*/
2022
class Escaper
2123
{

src/Symfony/Component/Yaml/Inline.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,8 @@ private static function dumpArray($value, $exceptionOnInvalidType, $objectSuppor
204204
* @return string A YAML string
205205
*
206206
* @throws ParseException When malformed inline YAML string is parsed
207+
*
208+
* @internal
207209
*/
208210
public static function parseScalar($scalar, $delimiters = null, $stringDelimiters = array('"', "'"), &$i = 0, $evaluate = true, $references = array())
209211
{

src/Symfony/Component/Yaml/Unescaper.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
* YAML strings.
1717
*
1818
* @author Matthew Lewinski <[email protected]>
19+
*
20+
* @internal
1921
*/
2022
class Unescaper
2123
{

0 commit comments

Comments
 (0)