You are here

public function SyncCorePoolExport::__construct in CMS Content Sync 8

Same name and namespace in other branches
  1. 2.1.x src/SyncCorePoolExport.php \Drupal\cms_content_sync\SyncCorePoolExport::__construct()
  2. 2.0.x src/SyncCorePoolExport.php \Drupal\cms_content_sync\SyncCorePoolExport::__construct()

SyncCorePoolExport constructor.

Parameters

\Drupal\cms_content_sync\Entity\Pool $pool: The pool this exporter is used for

Overrides SyncCoreExport::__construct

File

src/SyncCorePoolExport.php, line 22

Class

SyncCorePoolExport

Namespace

Drupal\cms_content_sync

Code

public function __construct(Pool $pool) {
  parent::__construct($pool
    ->getClient());
  $this->pool = $pool;
}