Arrayable.php 184 B

1234567891011121314
  1. <?php
  2. namespace Illuminate\Contracts\Support;
  3. interface Arrayable
  4. {
  5. /**
  6. * Get the instance as an array.
  7. *
  8. * @return array
  9. */
  10. public function toArray();
  11. }