MethodWithAdditionalParam.php 249 B

123456789101112
  1. <?php
  2. namespace Fixtures\Prophecy;
  3. abstract class MethodWithAdditionalParam extends WithArguments implements Named
  4. {
  5. abstract public function getName($name = null);
  6. public function methodWithoutTypeHints($arg, $arg2 = null)
  7. {
  8. }
  9. }