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