X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=api%2FWrapper.php;h=6c9dad30e607e7406da136751b1fb1e9c1669a8e;hb=f20d2b0dd9d7af4a28fc87a13a0dc6f41e466f90;hp=f53c8fdb835d6fcc6d7f80c35938bfd9461261bf;hpb=17d83a01db1059f95af45e3bd8898e353e52c02c;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); + }