mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-09-18 09:39:58 +08:00
9 lines
96 B
PHP
9 lines
96 B
PHP
<?php
|
|
|
|
namespace think\contract;
|
|
|
|
interface Arrayable
|
|
{
|
|
public function toArray(): array;
|
|
}
|