12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- namespace Doctrine\Tests\Common\Proxy;
- /**
- * Test asset class
- */
- class MagicSetClass
- {
- /**
- * @var string
- */
- public $id = 'id';
- /**
- * @var string
- */
- public $publicField = 'publicField';
- /**
- * @var string|null
- */
- public $testAttribute;
- /**
- * @param string $name
- * @param mixed $value
- *
- * @throws \BadMethodCallException
- */
- public function __set($name, $value)
- {
- if ($name === 'test') {
- $this->testAttribute = $value;
- }
- if ($name === 'publicField' || $name === 'id') {
- throw new \BadMethodCallException('Should never be called for "publicField" or "id"');
- }
- $this->testAttribute = $value;
- }
- }
|