Some checks failed
continuous-integration/drone/push Build is failing
- Complete GGZ Ecademy Laravel backend application - RESTful API for learning products, members, filters - Authentication and authorization system - Database migrations and seeders - Custom CRUD generator commands - Email notification system - Integration with frontend applications
11 lines
208 B
PHP
11 lines
208 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Error;
|
|
|
|
interface ErrorInterface
|
|
{
|
|
public function getStatusCode(): int;
|
|
public function getErrorCode(): string;
|
|
public function getErrorMessage(): string;
|
|
}
|