You are here

ContentHubQueueItemInterface.php in Acquia Content Hub 8

File

src/QueueItem/ContentHubQueueItemInterface.php
View source
<?php

namespace Drupal\acquia_contenthub\QueueItem;


/**
 * Interface for Content Hub Queue Items.
 *
 * @package Drupal\acquia_contenthub\QueueItem
 */
interface ContentHubQueueItemInterface {

  /**
   * Get a property on the QueueItem.
   *
   * @param string $property
   *   A property key.
   *
   * @return bool|mixed
   *   The value on the queue item.
   */
  public function get($property);

}

Interfaces

Namesort descending Description
ContentHubQueueItemInterface Interface for Content Hub Queue Items.