11 lines
123 B
PHP
11 lines
123 B
PHP
<?php
|
|
|
|
namespace Fixtures\Prophecy;
|
|
|
|
class WithFinalMethod
|
|
{
|
|
final public function finalImplementation()
|
|
{
|
|
}
|
|
}
|