blob: 5ad93b70bd3bc6e906c225a02e20d1376795c89b [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3namespace Illuminate\Contracts\Support;
4
5interface Arrayable
6{
7 /**
8 * Get the instance as an array.
9 *
10 * @return array
11 */
12 public function toArray();
13}