eventbrite_one_way_sync-1.0.0/modules/eventbrite_one_way_sync_node/src/EventNode/EventNodeInterface.php
modules/eventbrite_one_way_sync_node/src/EventNode/EventNodeInterface.php
<?php namespace Drupal\eventbrite_one_way_sync_node\EventNode; /** * An Event node. */ interface EventNodeInterface { /** * Synchronize with the Eventbrite Event. * * @return \Drupal\eventbrite_one_way_sync_node\EventNode\EventNodeInterface * This object for daisychaining. */ public function syncWithEventbriteEvent() : EventNodeInterface; /** * Save the node. */ public function save(); }