Fix static function on inbound callback and endcallback for adapters

This commit is contained in:
osaajani 2023-09-22 18:27:17 +02:00
parent 3b2dddbea3
commit 5d1015e190
12 changed files with 23 additions and 23 deletions

View file

@ -351,7 +351,7 @@ namespace adapters;
return [];
}
public function inbound_call_callback(): array
public static function inbound_call_callback(): array
{
$response = [
'error' => false,
@ -380,7 +380,7 @@ namespace adapters;
return $response;
}
public function end_call_callback(): array
public static function end_call_callback(): array
{
$response = [
'error' => false,