Files
php_assessment_2/wp-content/plugins/mailpoet/lib/API/REST/Exception.php
T

15 lines
243 B
PHP
Raw Normal View History

2025-02-05 23:15:46 +01:00
<?php declare(strict_types = 1);
namespace MailPoet\API\REST;
if (!defined('ABSPATH')) exit;
interface Exception {
public function getStatusCode(): int;
public function getErrorCode(): string;
public function getErrors(): array;
}