blob: 3194bd1163e071c5dfcf7c75cc04f62ed227a192 [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3namespace Illuminate\Contracts\Support;
4
Matthias Andreas Benkard1ba53812022-12-27 17:32:58 +01005/**
6 * @template TKey of array-key
7 * @template TValue
8 */
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02009interface Arrayable
10{
11 /**
12 * Get the instance as an array.
13 *
Matthias Andreas Benkard1ba53812022-12-27 17:32:58 +010014 * @return array<TKey, TValue>
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020015 */
16 public function toArray();
17}