media_acquiadam-8.x-1.46/src/AcquiadamInterface.php
src/AcquiadamInterface.php
<?php
namespace Drupal\media_acquiadam;
/**
* Interface AcquiadamInterface.
*
* Defines the Acquia dam interface.
*
* @method string downloadAsset(string $assetID)
* @method array searchAssets(array $params, bool $released_not_expired = TRUE)
*/
interface AcquiadamInterface {
/**
* Passes method calls through to the DAM client object.
*
* @param string $name
* The name of the method to call.
* @param array $arguments
* An array of arguments.
*
* @return mixed
* Returns whatever the dam client returns.
*/
public function __call($name, array $arguments);
}
