public function EntityStatus::whyDidPushingFail in CMS Content Sync 8
Same name and namespace in other branches
- 2.1.x src/Entity/EntityStatus.php \Drupal\cms_content_sync\Entity\EntityStatus::whyDidPushingFail()
- 2.0.x src/Entity/EntityStatus.php \Drupal\cms_content_sync\Entity\EntityStatus::whyDidPushingFail()
Get the details provided to ->didPushFail( TRUE, ... ) before.
Return value
null|array
File
- src/
Entity/ EntityStatus.php, line 546
Class
- EntityStatus
- Defines the "Content Sync - Entity Status" entity type.
Namespace
Drupal\cms_content_sync\EntityCode
public function whyDidPushingFail() {
return $this
->getData(self::DATA_PUSH_FAILURE);
}