Files
c-cms-legacy/vendor/symfony/debug/Tests/Fixtures/ExtendedFinalMethod.php
Mathieu Lagace 5fa3c85b97 Include Vendor
2018-06-27 20:31:54 -04:00

18 lines
240 B
PHP

<?php
namespace Symfony\Component\Debug\Tests\Fixtures;
class ExtendedFinalMethod extends FinalMethod
{
/**
* {@inheritdoc}
*/
public function finalMethod()
{
}
public function anotherMethod()
{
}
}