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

@ -207,7 +207,7 @@ interface AdapterInterface
* ]
* ]
*/
public function inbound_call_callback(): array;
public static function inbound_call_callback(): array;
/**
* Method called on reception of a end call notification.
@ -221,5 +221,5 @@ interface AdapterInterface
* ]
* ]
*/
public function end_call_callback(): array;
public static function end_call_callback(): array;
}