class MagicSetClass in Plug 7
Test asset class
Hierarchy
- class \Doctrine\Tests\Common\Proxy\MagicSetClass
Expanded class hierarchy of MagicSetClass
File
- lib/
doctrine/ common/ tests/ Doctrine/ Tests/ Common/ Proxy/ MagicSetClass.php, line 8
Namespace
Doctrine\Tests\Common\ProxyView source
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;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
MagicSetClass:: |
public | property | ||
MagicSetClass:: |
public | property | ||
MagicSetClass:: |
public | property | ||
MagicSetClass:: |
public | function |