UnserializeExceptionArrayObjectAsset.php 339 B

1234567891011121314151617181920
  1. <?php
  2. namespace DoctrineTest\InstantiatorTestAsset;
  3. use ArrayObject;
  4. use BadMethodCallException;
  5. /**
  6. * A simple asset for an abstract class
  7. */
  8. class UnserializeExceptionArrayObjectAsset extends ArrayObject
  9. {
  10. /**
  11. * {@inheritDoc}
  12. */
  13. public function __wakeup()
  14. {
  15. throw new BadMethodCallException();
  16. }
  17. }