minor #26982 [Cache] Add missing @internal tag on ProxyTrait (nicolas-grekas)

This PR was merged into the 3.4 branch.

Discussion
----------

[Cache] Add missing `@internal` tag on ProxyTrait

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

All traits in Cache are internal. We just forgot the annotation on this one.

Commits
-------

3d7c7cf39a [Cache] Add missing `@internal` tag on ProxyTrait
This commit is contained in:
Fabien Potencier 2018-04-19 14:17:05 +02:00
commit 3f71d88915

View File

@ -16,6 +16,8 @@ use Symfony\Component\Cache\ResettableInterface;
/**
* @author Nicolas Grekas <p@tchwork.com>
*
* @internal
*/
trait ProxyTrait
{