Further Drupal 8.6.4 changes. Some core files were not committed before a commit...
[yaffs-website] / vendor / symfony / debug / Tests / Fixtures / ExtendedFinalMethod.php
1 <?php
2
3 namespace Symfony\Component\Debug\Tests\Fixtures;
4
5 class ExtendedFinalMethod extends FinalMethod
6 {
7     use FinalMethod2Trait;
8
9     /**
10      * {@inheritdoc}
11      */
12     public function finalMethod()
13     {
14     }
15
16     public function anotherMethod()
17     {
18     }
19 }