mirror of
https://github.com/danog/psalm-plugin-laravel.git
synced 2025-01-22 21:31:21 +01:00
fix: stub out enumerable since it doesnt exist in 5.5
This commit is contained in:
parent
e5188d14fc
commit
783b014150
11
src/Stubs/Enumerable.stubphp
Normal file
11
src/Stubs/Enumerable.stubphp
Normal file
@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Illuminate\Support;
|
||||
|
||||
/**
|
||||
* @template TKey
|
||||
* @template TValue
|
||||
*
|
||||
* @extends \IteratorAggregate<TKey, TValue>
|
||||
*/
|
||||
interface Enumerable extends \Countable, \IteratorAggregate, \JsonSerializable {}
|
Loading…
x
Reference in New Issue
Block a user