mirror of
https://github.com/danog/psalm-plugin-laravel.git
synced 2024-11-26 20:34:48 +01:00
12 lines
214 B
Plaintext
12 lines
214 B
Plaintext
<?php
|
|
|
|
namespace Illuminate\Support;
|
|
|
|
/**
|
|
* @template TKey
|
|
* @template TValue
|
|
*
|
|
* @extends \IteratorAggregate<TKey, TValue>
|
|
*/
|
|
interface Enumerable extends \Countable, \IteratorAggregate, \JsonSerializable {}
|