Files
service-captcha/app/Contracts/ServiceResultError.php
T

13 lines
248 B
PHP

<?php
declare(strict_types=1);
namespace App\Contracts;
interface ServiceResultError
{
public function getCode(): ?int;
public function getMessage(): string;
public function getErrors(): array;
public function getData(): array;
}