You are here

public function EntityStatus::whyDidPullingFail in CMS Content Sync 2.1.x

Same name and namespace in other branches
  1. 8 src/Entity/EntityStatus.php \Drupal\cms_content_sync\Entity\EntityStatus::whyDidPullingFail()
  2. 2.0.x src/Entity/EntityStatus.php \Drupal\cms_content_sync\Entity\EntityStatus::whyDidPullingFail()

Get the details provided to ->didPullFail( TRUE, ... ) before.

Return value

null|array

File

src/Entity/EntityStatus.php, line 589

Class

EntityStatus
Defines the "Content Sync - Entity Status" entity type.

Namespace

Drupal\cms_content_sync\Entity

Code

public function whyDidPullingFail() {
  return $this
    ->getData(self::DATA_PULL_FAILURE);
}