You are here

MagicSetClass.php in Zircon Profile 8

File

vendor/doctrine/common/tests/Doctrine/Tests/Common/Proxy/MagicSetClass.php
View source
<?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;
  }

}

Classes

Namesort descending Description
MagicSetClass Test asset class