class LazyLoadableObject in Plug 7
Test asset representing a lazy loadable object
@author Marco Pivetta <ocramius@gmail.com> @since 2.4
Hierarchy
- class \Doctrine\Tests\Common\Proxy\LazyLoadableObject
Expanded class hierarchy of LazyLoadableObject
File
- lib/
doctrine/ common/ tests/ Doctrine/ Tests/ Common/ Proxy/ LazyLoadableObject.php, line 28
Namespace
Doctrine\Tests\Common\ProxyView 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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
LazyLoadableObject:: |
protected | property | ||
LazyLoadableObject:: |
protected | property | ||
LazyLoadableObject:: |
protected | property | ||
LazyLoadableObject:: |
protected | property | ||
LazyLoadableObject:: |
public | property | ||
LazyLoadableObject:: |
public | property | ||
LazyLoadableObject:: |
public | property | ||
LazyLoadableObject:: |
public | property | ||
LazyLoadableObject:: |
public | function | ||
LazyLoadableObject:: |
public | function | ||
LazyLoadableObject:: |
public | function | ||
LazyLoadableObject:: |
public | function | ||
LazyLoadableObject:: |
public | function | ||
LazyLoadableObject:: |
public | function |