Arrayable.php 96 B

12345678
  1. <?php
  2. namespace think\contract;
  3. interface Arrayable
  4. {
  5. public function toArray(): array;
  6. }