Arrayable.php 257 B

1234567891011121314151617
  1. <?php
  2. namespace Illuminate\Contracts\Support;
  3. /**
  4. * @template TKey of array-key
  5. * @template TValue
  6. */
  7. interface Arrayable
  8. {
  9. /**
  10. * Get the instance as an array.
  11. *
  12. * @return array<TKey, TValue>
  13. */
  14. public function toArray();
  15. }