content_deploy-1.0.1/src/Exporter/ContentExporterInterface.php
src/Exporter/ContentExporterInterface.php
<?php
namespace Drupal\content_deploy\Exporter;
use Drupal\Core\Entity\ContentEntityInterface;
interface ContentExporterInterface {
/**
* Exports the given entity.
*
* @param \Drupal\Core\Entity\ContentEntityInterface $entity
* @param array $context
*
* @return array
*/
public function exportEntity(ContentEntityInterface $entity, array $context = []);
}