mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-07-09 17:55:34 +08:00
12 lines
140 B
PHP
12 lines
140 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
|
||
|
|
namespace ZM\Annotation\Interfaces;
|
||
|
|
|
||
|
|
|
||
|
|
interface Level
|
||
|
|
{
|
||
|
|
public function getLevel();
|
||
|
|
|
||
|
|
public function setLevel(int $level);
|
||
|
|
}
|