X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;ds=inline;f=api%2FWrapper.php;h=6c9dad30e607e7406da136751b1fb1e9c1669a8e;hb=4f347e3aef97cec817596634c852f7db6f7241fb;hp=f53c8fdb835d6fcc6d7f80c35938bfd9461261bf;hpb=87878ac8e6101fc5bed04f356c677b5f9ec54bc7;p=civicrm-core.git diff --git a/api/Wrapper.php b/api/Wrapper.php index f53c8fdb83..6c9dad30e6 100644 --- a/api/Wrapper.php +++ b/api/Wrapper.php @@ -6,6 +6,8 @@ interface API_Wrapper { /** + * Interface for interpreting api input. + * * @param array $apiRequest * * @return array @@ -14,6 +16,8 @@ interface API_Wrapper { public function fromApiInput($apiRequest); /** + * Interface for interpreting api output. + * * @param array $apiRequest * @param array $result * @@ -21,4 +25,5 @@ interface API_Wrapper { * modified $result */ public function toApiOutput($apiRequest, $result); + }