MagicGetClass.php 651 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. namespace Doctrine\Tests\Common\Proxy;
  3. /**
  4. * Test asset class
  5. */
  6. class MagicGetClass
  7. {
  8. /**
  9. * @var string
  10. */
  11. public $id = 'id';
  12. /**
  13. * @var string
  14. */
  15. public $publicField = 'publicField';
  16. /**
  17. * @param $name
  18. *
  19. * @return string
  20. * @throws \BadMethodCallException
  21. */
  22. public function __get($name)
  23. {
  24. if ($name === 'test') {
  25. return 'test';
  26. }
  27. if ($name === 'publicField' || $name === 'id') {
  28. throw new \BadMethodCallException('Should never be called for "publicField" or "id"');
  29. }
  30. return 'not defined';
  31. }
  32. }