IOP-Patho/vendor/symfony/debug/Tests/Fixtures/FinalMethod.php

18 lines
224 B
PHP
Raw Normal View History

2025-07-17 08:28:28 +00:00
<?php
namespace Symfony\Component\Debug\Tests\Fixtures;
class FinalMethod
{
/**
* @final since version 3.3.
*/
public function finalMethod()
{
}
public function anotherMethod()
{
}
}