mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 15:32:48 +08:00
12 lines
215 B
PHP
12 lines
215 B
PHP
<?php
|
|
|
|
namespace app\common\scheme\attribute;
|
|
|
|
use Attribute;
|
|
use base\common\scheme\attribute\Index as BaseIndex;
|
|
|
|
#[Attribute(Attribute::TARGET_CLASS | Attribute::IS_REPEATABLE)]
|
|
class Index extends BaseIndex
|
|
{
|
|
}
|