You are here

DataApiInterface.php in Acquia Lift Connector 8

File

src/Service/Api/DataApiInterface.php
View source
<?php

/**
 * @file
 * Contains \Drupal\acquia_lift\Service\Api\DataApiInterface.
 */
namespace Drupal\acquia_lift\Service\Api;

interface DataApiInterface {

  /**
   * Gets a list of available segments for the current configuration.
   *
   * @return array
   *   An array of segment names.
   */
  public function getSegments();

}

Interfaces

Namesort descending Description
DataApiInterface