2019-11-11 14:05:12 +08:00

9 lines
96 B
PHP

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