Files
2026-03-11 18:35:09 +08:00

9 lines
96 B
PHP

<?php
namespace think\contract;
interface Arrayable
{
public function toArray(): array;
}