Data
FinalYes
Table of Contents
Methods
- getCurrentFields() : array<string, mixed>
- Returns field values that represent the current state of a source
- getEntityId() : int|null
- getEntityTypeId() : int|null
- getPreviousFields() : array<string, mixed>
- Returns field values that represent the previous state of a source. For example, values before update
- setCurrentFields() : $this
- Sets field values that represent the current state of a source
- setEntityId() : self
- setEntityTypeId() : self
- setPreviousFields() : $this
- Sets field values that represent the previous state of a source. For example, values before update Provide them if fields values were changed from the moment of last registration
Methods
getCurrentFields()
Returns field values that represent the current state of a source
public
getCurrentFields() : array<string, mixed>
Return values
array<string, mixed>getEntityId()
public
getEntityId() : int|null
Return values
int|nullgetEntityTypeId()
public
getEntityTypeId() : int|null
Return values
int|nullgetPreviousFields()
Returns field values that represent the previous state of a source. For example, values before update
public
getPreviousFields() : array<string, mixed>
Return values
array<string, mixed>setCurrentFields()
Sets field values that represent the current state of a source
public
setCurrentFields(array<string, mixed> $currentFields) : $this
Parameters
- $currentFields : array<string, mixed>
Return values
$thissetEntityId()
public
setEntityId(int $entityId) : self
Parameters
- $entityId : int
Return values
selfsetEntityTypeId()
public
setEntityTypeId(int $entityTypeId) : self
Parameters
- $entityTypeId : int
Return values
selfsetPreviousFields()
Sets field values that represent the previous state of a source. For example, values before update Provide them if fields values were changed from the moment of last registration
public
setPreviousFields(array<string, mixed> $previousFields) : $this
Parameters
- $previousFields : array<string, mixed>