WithProtectedAbstractMethod.php 131 B

12345678
  1. <?php
  2. namespace Fixtures\Prophecy;
  3. abstract class WithProtectedAbstractMethod
  4. {
  5. abstract protected function innerDetail();
  6. }