projects
/
civicrm-core.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4da63d8
)
Make apiRequst nextId accessible for api4 constructor
author
Coleman Watts
<coleman@civicrm.org>
Thu, 23 May 2019 12:52:22 +0000
(08:52 -0400)
committer
Coleman Watts
<coleman@civicrm.org>
Thu, 23 May 2019 13:11:36 +0000
(09:11 -0400)
Civi/API/Request.php
patch
|
blob
|
blame
|
history
diff --git
a/Civi/API/Request.php
b/Civi/API/Request.php
index b40ece71e73d6efdf67948fd1862523870cecbaa..9a101002a50f6a2947d96001c525b8c0403dfaed 100644
(file)
--- a/
Civi/API/Request.php
+++ b/
Civi/API/Request.php
@@
-115,4
+115,8
@@
class Request {
return strtolower(\CRM_Utils_String::munge($action));
}
+ public static function getNextId() {
+ return self::$nextId++;
+ }
+
}