
| Current Path : /var/www/html_old/abk/web/modules/contrib/content_sync/src/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html_old/abk/web/modules/contrib/content_sync/src/ContentSyncManagerInterface.php |
<?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();
}