MagicWakeupClass.php 442 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace Doctrine\Tests\Common\Proxy;
  3. /**
  4. * Test asset class
  5. */
  6. class MagicWakeupClass
  7. {
  8. /**
  9. * @var string
  10. */
  11. public $id = 'id';
  12. /**
  13. * @var string
  14. */
  15. public $publicField = 'publicField';
  16. /**
  17. * @var string
  18. */
  19. public $wakeupValue = 'defaultValue';
  20. /**
  21. * @return void
  22. */
  23. public function __wakeup()
  24. {
  25. $this->wakeupValue = 'newWakeupValue';
  26. }
  27. }