Merge pull request #16736 from ixiam/dev_report_issue#27
[civicrm-core.git] / api / Wrapper.php
index f53c8fdb835d6fcc6d7f80c35938bfd9461261bf..6c9dad30e607e7406da136751b1fb1e9c1669a8e 100644 (file)
@@ -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);
+
 }