Security update for Core, with self-updated composer
[yaffs-website] / vendor / symfony / debug / Tests / Fixtures / FinalMethod.php
1 <?php
2
3 namespace Symfony\Component\Debug\Tests\Fixtures;
4
5 class FinalMethod
6 {
7     /**
8      * @final since version 3.3.
9      */
10     public function finalMethod()
11     {
12     }
13
14     public function anotherMethod()
15     {
16     }
17 }