DemoAccount
extends DemoAccount
in package
implements
Proxy
DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR
Table of Contents
Interfaces
- Proxy
Constants
- STATUS_AWAITING_DELETE = -1
- STATUS_DONE = 2
- STATUS_FAILED = -2
- STATUS_IN_PROGRESS = 1
- STATUS_REQUESTED = 0
Properties
- $__cloner__ : Closure
- $__initializer__ : Closure
- $__isInitialized__ : bool
- $lazyPropertiesDefaults : array<string, mixed>
- $lazyPropertiesNames : array<string, null>
Methods
- __clone() : mixed
- __construct() : mixed
- __load() : mixed
- Forces initialization of the proxy
- __sleep() : array<string|int, mixed>
- __wakeup() : mixed
- getDemoUserAccount() : UserAccount|null
- Get the value of demoUserAccount
- getParameters() : array<string|int, mixed>|null
- Get the value of parameters
- getRequestUserAccount() : UserAccount|null
- Get the value of requestUserAccount
- getStatus() : int
- Get the value of status
- setDemoUserAccount() : self
- Set the value of demoUserAccount
- setParameters() : self
- Set the value of parameters
- setRequestUserAccount() : self
- Set the value of requestUserAccount
- setStatus() : self
- Set the value of status
Constants
STATUS_AWAITING_DELETE
public
mixed
STATUS_AWAITING_DELETE
= -1
STATUS_DONE
public
mixed
STATUS_DONE
= 2
STATUS_FAILED
public
mixed
STATUS_FAILED
= -2
STATUS_IN_PROGRESS
public
mixed
STATUS_IN_PROGRESS
= 1
STATUS_REQUESTED
public
mixed
STATUS_REQUESTED
= 0
Properties
$__cloner__
public
Closure
$__cloner__
the callback responsible of loading properties that need to be copied in the cloned object
Tags
$__initializer__
public
Closure
$__initializer__
the callback responsible for loading properties in the proxy object. This callback is called with three parameters, being respectively the proxy object to be initialized, the method that triggered the initialization process and an array of ordered parameters that were passed to that method.
Tags
$__isInitialized__
public
bool
$__isInitialized__
= false
flag indicating if this object was already initialized
Tags
$lazyPropertiesDefaults
public
static array<string, mixed>
$lazyPropertiesDefaults
= array()
default values of properties to be lazy loaded, with keys being the property names
Tags
$lazyPropertiesNames
public
static array<string, null>
$lazyPropertiesNames
= array()
properties to be lazy loaded, indexed by property name
Methods
__clone()
public
__clone() : mixed
__construct()
public
__construct([Closure|null $initializer = null ][, Closure|null $cloner = null ]) : mixed
Parameters
- $initializer : Closure|null = null
- $cloner : Closure|null = null
__load()
Forces initialization of the proxy
public
__load() : mixed
__sleep()
public
__sleep() : array<string|int, mixed>
Return values
array<string|int, mixed>__wakeup()
public
__wakeup() : mixed
getDemoUserAccount()
Get the value of demoUserAccount
public
getDemoUserAccount() : UserAccount|null
Return values
UserAccount|nullgetParameters()
Get the value of parameters
public
getParameters() : array<string|int, mixed>|null
Return values
array<string|int, mixed>|nullgetRequestUserAccount()
Get the value of requestUserAccount
public
getRequestUserAccount() : UserAccount|null
Return values
UserAccount|nullgetStatus()
Get the value of status
public
getStatus() : int
Return values
intsetDemoUserAccount()
Set the value of demoUserAccount
public
setDemoUserAccount(mixed $demoUserAccount) : self
Parameters
- $demoUserAccount : mixed
Return values
selfsetParameters()
Set the value of parameters
public
setParameters(mixed $parameters) : self
Parameters
- $parameters : mixed
Return values
selfsetRequestUserAccount()
Set the value of requestUserAccount
public
setRequestUserAccount(mixed $requestUserAccount) : self
Parameters
- $requestUserAccount : mixed
Return values
selfsetStatus()
Set the value of status
public
setStatus(int $status) : self
Parameters
- $status : int