Further Drupal 8.6.4 changes. Some core files were not committed before a commit...
[yaffs-website] / vendor / symfony / debug / Tests / Fixtures / InternalTrait2.php
1 <?php
2
3 namespace Symfony\Component\Debug\Tests\Fixtures;
4
5 /**
6  * @internal
7  */
8 trait InternalTrait2
9 {
10     /**
11      * @internal since version 3.4
12      */
13     public function internalMethod()
14     {
15     }
16
17     /**
18      * @internal but should not trigger a deprecation
19      */
20     public function usedInInternalClass()
21     {
22     }
23 }