
Travis config update Removed HHVM script as Laravel no longer support HHVM after releasing 5.3
18 lines
205 B
PHP
18 lines
205 B
PHP
<?php
|
|
|
|
namespace Symfony\Component\Debug\Tests\Fixtures;
|
|
|
|
class FinalMethod
|
|
{
|
|
/**
|
|
* @final
|
|
*/
|
|
public function finalMethod()
|
|
{
|
|
}
|
|
|
|
public function anotherMethod()
|
|
{
|
|
}
|
|
}
|