magic_methods_007.phpt 249 B

123456789101112
  1. --TEST--
  2. Testing __set() declaration in abstract class with wrong modifier
  3. --FILE--
  4. <?php
  5. abstract class b {
  6. abstract protected function __set($a);
  7. }
  8. ?>
  9. --EXPECTF--
  10. Fatal error: Method b::__set() must take exactly 2 arguments in %s on line %d