WithFinalMethod.php 123 B

12345678910
  1. <?php
  2. namespace Fixtures\Prophecy;
  3. class WithFinalMethod
  4. {
  5. final public function finalImplementation()
  6. {
  7. }
  8. }