From 71a18c10672e3abef75747a0890c2816cf9571f1 Mon Sep 17 00:00:00 2001 From: mickadoo Date: Mon, 10 Jul 2017 17:28:45 +0100 Subject: [PATCH] CRM-20833: Change api4 entity namespace again --- Civi/API/Request.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Civi/API/Request.php b/Civi/API/Request.php index c60ceade9e..8e08ec810e 100644 --- a/Civi/API/Request.php +++ b/Civi/API/Request.php @@ -73,7 +73,7 @@ class Request { return $apiRequest; case 4: - $callable = array("Civi\\API\\V4\\Entity\\$entity", $action); + $callable = array("Civi\\Api4\\Entity\\$entity", $action); if (!is_callable($callable)) { throw new Exception\NotImplementedException("API ($entity, $action) does not exist (join the API team and implement it!)"); } -- 2.25.1