Files
kiri-core/http-helper/Route/MiddlewareAbstracts.php
T
2021-08-19 10:57:45 +08:00

26 lines
298 B
PHP

<?php
namespace Http\Route;
use Http\IInterface\MiddlewareInterface;
/**
*
*/
abstract class MiddlewareAbstracts implements MiddlewareInterface
{
/** @var int */
protected int $priority = 0;
/**
* @return int
*/
public function getPriority(): int
{
return $this->priority;
}
}