Further Drupal 8.6.4 changes. Some core files were not committed before a commit...
[yaffs-website] / vendor / symfony / debug / Tests / Fixtures / TraitWithInternalMethod.php
1 <?php
2
3 namespace Symfony\Component\Debug\Tests\Fixtures;
4
5 trait TraitWithInternalMethod
6 {
7     /**
8      * @internal
9      */
10     public function foo()
11     {
12     }
13 }