Drupal investigation

WithArguments.php 247B

123456789101112131415
  1. <?php
  2. namespace Fixtures\Prophecy;
  3. class WithArguments
  4. {
  5. public function methodWithArgs(array $arg_1 = array(), \ArrayAccess $arg_2, \ArrayAccess $arg_3 = null)
  6. {
  7. }
  8. public function methodWithoutTypeHints($arg)
  9. {
  10. }
  11. }