Drupal investigation

WithProtectedAbstractMethod.php 131B

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