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

@ -479,12 +479,12 @@ class OctopushVirtualNumberAdapter implements AdapterInterface
return $response;
}
public function inbound_call_callback(): array
public static function inbound_call_callback(): array
{
return [];
}
public function end_call_callback(): array
public static function end_call_callback(): array
{
return [];
}