minor #17740 [Yaml] mark the Inline class as internal (xabbuh)

This PR was merged into the 3.1-dev branch.

Discussion
----------

[Yaml] mark the Inline class as internal

| Q             | A
| ------------- | ---
| Bug fix?      | no
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets |
| License       | MIT
| Doc PR        |

Users imo should use the `Yaml` class as the only entry point. Thus marking the other classes as internal makes it easier for us to break BC in them when implementing new features in Symfony 4.

Commits
-------

09a54ef [Yaml] mark the Inline class as internal
This commit is contained in:
Fabien Potencier 2016-02-16 08:10:35 +01:00
commit 74ffd6b931

View File

@ -18,6 +18,8 @@ use Symfony\Component\Yaml\Exception\DumpException;
* Inline implements a YAML parser/dumper for the YAML inline syntax.
*
* @author Fabien Potencier <fabien@symfony.com>
*
* @internal
*/
class Inline
{