You are here

ContentSyncManagerInterface.php in Content Synchronization 3.0.x

Same filename and directory in other branches
  1. 8.2 src/ContentSyncManagerInterface.php

File

src/ContentSyncManagerInterface.php
View source
<?php

namespace Drupal\content_sync;


/**
 * Interface ContentSyncManagerInterface.
 *
 * @package Drupal\content_sync
 */
interface ContentSyncManagerInterface {

  /**
   * @return \Drupal\content_sync\Importer\ContentImporterInterface
   */
  public function getContentImporter();

  /**
   * @return \Drupal\content_sync\Exporter\ContentExporterInterface
   */
  public function getContentExporter();

  /**
   * @return \Symfony\Component\Serializer\Serializer
   */
  public function getSerializer();

  /**
   * @return \Drupal\Core\Entity\EntityTypeManagerInterface
   */
  public function getEntityTypeManager();

}

Interfaces

Namesort descending Description
ContentSyncManagerInterface Interface ContentSyncManagerInterface.