removing_parameter_error.phpt 563 B

1234567891011121314151617181920
  1. --TEST--
  2. It's not possible to remove required parameter before a variadic parameter
  3. --FILE--
  4. <?php
  5. /* Theoretically this should be valid because it weakens the constraint, but
  6. * PHP does not allow this (for non-variadics), so I'm not allowing it here, too,
  7. * to stay consistent. */
  8. interface DB {
  9. public function query($query, ...$params);
  10. }
  11. class MySQL implements DB {
  12. public function query(...$params) { }
  13. }
  14. ?>
  15. --EXPECTF--
  16. Fatal error: Declaration of MySQL::query(...$params) must be compatible with DB::query($query, ...$params) in %s on line %d