AcquiaLiftLearningAgentInterface.inc in Acquia Lift Connector 7.2
Provides an interface for Acquia Lift learning agents.
File
includes/AcquiaLiftLearningAgentInterface.incView source
<?php
/**
* @file
* Provides an interface for Acquia Lift learning agents.
*/
interface AcquiaLiftLearningAgentInterface {
/**
* Returns an
* @return mixed
*/
public static function getAPIInstance();
/**
* @param $option_sets
* @param $new_goals
* @param array $old_goals
* @return mixed
*/
public function getAgentSyncOperations($option_sets, $new_goals, $old_goals = array());
}
Interfaces
Name | Description |
---|---|
AcquiaLiftLearningAgentInterface | @file Provides an interface for Acquia Lift learning agents. |