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

18 lines
240 B
PHP
Raw Normal View History

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