Files
piratepoet/mailpoet/lib/API/REST/Exception.php
Jan Jakes 9e86fa69b9 Add missing return typehint
[MAILPOET-4659]
2022-10-13 11:58:11 +02:00

12 lines
210 B
PHP

<?php declare(strict_types = 1);
namespace MailPoet\API\REST;
interface Exception {
public function getStatusCode(): int;
public function getErrorCode(): string;
public function getErrors(): array;
}