Drupal investigation

WithFinalVirtuallyPrivateMethod.php 199B

12345678910111213141516
  1. <?php
  2. namespace Fixtures\Prophecy;
  3. class WithFinalVirtuallyPrivateMethod
  4. {
  5. final public function __toString()
  6. {
  7. return '';
  8. }
  9. final public function _getName()
  10. {
  11. }
  12. }