drupal-civicrm/sites/all/modules/civicrm/api/Wrapper.php

30 lines
474 B
PHP
Raw Normal View History

2018-01-14 15:10:16 +02:00
<?php
/**
* Interface API_Wrapper
*/
interface API_Wrapper {
/**
* Interface for interpreting api input.
*
* @param array $apiRequest
*
* @return array
* modified $apiRequest
*/
public function fromApiInput($apiRequest);
/**
* Interface for interpreting api output.
*
* @param array $apiRequest
* @param array $result
*
* @return array
* modified $result
*/
public function toApiOutput($apiRequest, $result);
}