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