You are here

class LazyLoadableObject in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/doctrine/common/tests/Doctrine/Tests/Common/Proxy/LazyLoadableObject.php \Doctrine\Tests\Common\Proxy\LazyLoadableObject

Test asset representing a lazy loadable object

@author Marco Pivetta <ocramius@gmail.com> @since 2.4

Hierarchy

Expanded class hierarchy of LazyLoadableObject

File

vendor/doctrine/common/tests/Doctrine/Tests/Common/Proxy/LazyLoadableObject.php, line 28

Namespace

Doctrine\Tests\Common\Proxy
View source
class LazyLoadableObject {

  /**
   * @var string
   */
  public $publicIdentifierField;

  /**
   * @var string
   */
  protected $protectedIdentifierField;

  /**
   * @var string
   */
  public $publicTransientField = 'publicTransientFieldValue';

  /**
   * @var string
   */
  protected $protectedTransientField = 'protectedTransientFieldValue';

  /**
   * @var string
   */
  public $publicPersistentField = 'publicPersistentFieldValue';

  /**
   * @var string
   */
  protected $protectedPersistentField = 'protectedPersistentFieldValue';

  /**
   * @var string
   */
  public $publicAssociation = 'publicAssociationValue';

  /**
   * @var string
   */
  protected $protectedAssociation = 'protectedAssociationValue';

  /**
   * @return string
   */
  public function getProtectedIdentifierField() {
    return $this->protectedIdentifierField;
  }

  /**
   * @return string
   */
  public function testInitializationTriggeringMethod() {
    return 'testInitializationTriggeringMethod';
  }

  /**
   * @return string
   */
  public function getProtectedAssociation() {
    return $this->protectedAssociation;
  }

  /**
   * @param \stdClass $param
   */
  public function publicTypeHintedMethod(\stdClass $param) {
  }

  /**
   *
   */
  public function &byRefMethod() {
  }

  /**
   * @param mixed $thisIsNotByRef
   * @param &mixed $thisIsByRef
   */
  public function byRefParamMethod($thisIsNotByRef, &$thisIsByRef) {
  }

}

Members