|
| getId () |
|
| setId ($entityId) |
|
| getDataHash () |
|
| setDataHash ($hash) |
|
| getStatus () |
|
| setStatus ($status=self::STATUS_ACCEPTED) |
|
| getErrorMessage () |
|
| setErrorMessage ($errorMessage=null) |
|
| getErrorCode () |
|
| setErrorCode ($errorCode=null) |
|
| __construct (array $data=[]) |
|
| addData (array $arr) |
|
| setData ($key, $value=null) |
|
| unsetData ($key=null) |
|
| getData ($key='', $index=null) |
|
| getDataByPath ($path) |
|
| getDataByKey ($key) |
|
| setDataUsingMethod ($key, $args=[]) |
|
| getDataUsingMethod ($key, $args=null) |
|
| hasData ($key='') |
|
| toArray (array $keys=[]) |
|
| convertToArray (array $keys=[]) |
|
| toXml (array $keys=[], $rootName='item', $addOpenTag=false, $addCdata=true) |
|
| convertToXml (array $arrAttributes=[], $rootName='item', $addOpenTag=false, $addCdata=true) |
|
| toJson (array $keys=[]) |
|
| convertToJson (array $keys=[]) |
|
| toString ($format='') |
|
| __call ($method, $args) |
|
| isEmpty () |
|
| serialize ($keys=[], $valueSeparator='=', $fieldSeparator=' ', $quote='"') |
|
| debug ($data=null, &$objects=[]) |
|
| offsetSet ($offset, $value) |
|
| offsetExists ($offset) |
|
| offsetUnset ($offset) |
|
| offsetGet ($offset) |
|
Definition at line 14 of file ItemStatus.php.
◆ getDataHash()
◆ getErrorCode()
◆ getErrorMessage()
◆ getId()
◆ getStatus()
◆ setDataHash()
◆ setErrorCode()
setErrorCode |
( |
|
$errorCode = null | ) |
|
@inheritDoc
Implements ItemStatusInterface.
Definition at line 95 of file ItemStatus.php.
97 if ($errorCode instanceof \Exception) {
98 $errorCode = $errorCode->getCode();
101 return $this->
setData(self::ERROR_CODE, (
int) $errorCode);
setData($key, $value=null)
◆ setErrorMessage()
setErrorMessage |
( |
|
$errorMessage = null | ) |
|
@inheritDoc
Implements ItemStatusInterface.
Definition at line 75 of file ItemStatus.php.
77 if ($errorMessage instanceof \Exception) {
78 $errorMessage = $errorMessage->getMessage();
81 return $this->
setData(self::ERROR_MESSAGE, $errorMessage);
setData($key, $value=null)
◆ setId()
◆ setStatus()
setStatus |
( |
|
$status = self::STATUS_ACCEPTED | ) |
|
The documentation for this class was generated from the following file: