Drupal investigation

SpecialMethods.php 368B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. namespace Fixtures\Prophecy;
  3. class SpecialMethods
  4. {
  5. public function __construct()
  6. {
  7. }
  8. function __destruct()
  9. {
  10. }
  11. function __call($name, $arguments)
  12. {
  13. }
  14. function __sleep()
  15. {
  16. }
  17. function __wakeup()
  18. {
  19. }
  20. function __toString()
  21. {
  22. return '';
  23. }
  24. function __invoke()
  25. {
  26. }
  27. }