10 lines
139 B
PHP
10 lines
139 B
PHP
<?
|
|
namespace Bitrix\Rest;
|
|
|
|
interface RestExceptionInterface
|
|
{
|
|
public function output(): array;
|
|
|
|
public function getStatus(): string;
|
|
}
|
|
?>
|