renew class run

This commit is contained in:
2019-07-17 18:01:53 +02:00
parent 204de1964c
commit d9a48ea714

View File

@@ -37,17 +37,9 @@ class BillingController extends AbstractController
list($service, $function) = explode('::', $serviceToCall);
$srv = null;
$srv = new $service();
if (class_exists($service))
$srv = new $service();
else
$this->logger->error("Can't find your class to redirect webhook");
if (method_exists($srv, $function))
$srv->{$function}($session);
else
$this->logger->error("Can't find your method in class " . $service);
$srv->{$function}($session);
return $this->json("OK", 200);
}