CRM-14319 - alter job api to not limit scheduled reminders
[civicrm-core.git] / api / Wrapper.php
CommitLineData
6a488035
TO
1<?php
2
3interface API_Wrapper {
4
5 /**
6 * @return modified $apiRequest
7 */
8 function fromApiInput($apiRequest);
9
10 /**
11 * @return modified $result
12 */
13 function toApiOutput($apiRequest, $result);
14}