X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=Civi%2FAPI%2FRequest.php;h=feded2985571ebede9423828ebc1cc08a66da39e;hb=707d14a9d26591ae4f0fbc8342445ad31796972e;hp=e4ffa282c176b35431e54f894bb5e2e7b81e9da6;hpb=2a2ee158f9a83ca8614d004aef83e803f45e60be;p=civicrm-core.git diff --git a/Civi/API/Request.php b/Civi/API/Request.php index e4ffa282c1..feded29855 100644 --- a/Civi/API/Request.php +++ b/Civi/API/Request.php @@ -26,6 +26,10 @@ */ namespace Civi\API; +/** + * Class Request + * @package Civi\API + */ class Request { private static $nextId = 1; @@ -36,6 +40,8 @@ class Request { * @param string $action * @param array $params * @param mixed $extra + * + * @throws \API_Exception * @return array the request descriptor; keys: * - version: int * - entity: string @@ -152,4 +158,4 @@ class Request { } } -} \ No newline at end of file +}