20 lines
245 B
PHP
20 lines
245 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: admin
|
|
* Date: 2019-03-20
|
|
* Time: 10:25
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace Kiri\Error;
|
|
|
|
/**
|
|
* Interface ErrorInterface
|
|
* @package Kiri\Error
|
|
*/
|
|
interface ErrorInterface
|
|
{
|
|
|
|
}
|