/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
src/Illuminate/Contracts/Support/Arrayable.php
17 строк
257 B
Nuno Maduro
[9.x] Improves `Support\Collection` and `Database\Eloquent\Collection` type definitions (#38538)
27 авг 2021, 17:01
Не верифицирован
27 авг 2021, 17:01
b1de554
Код
Авторство
О чём код?
<?php namespace Illuminate\Contracts\Support; /** * @template TKey of array-key * @template TValue */ interface Arrayable { /** * Get the instance as an array. * * @return array<TKey, TValue> */ public function toArray(); }