fix: stub out enumerable since it doesnt exist in 5.5

This commit is contained in:
Feek 2020-04-12 21:13:57 -07:00
parent e5188d14fc
commit 783b014150

View File

@ -0,0 +1,11 @@
<?php
namespace Illuminate\Support;
/**
* @template TKey
* @template TValue
*
* @extends \IteratorAggregate<TKey, TValue>
*/
interface Enumerable extends \Countable, \IteratorAggregate, \JsonSerializable {}