Annotate Traversable type on Result

This commit is contained in:
Aaron Piotrowski 2022-07-17 11:16:06 -05:00
parent 390fb800bb
commit 226053b28b
No known key found for this signature in database
GPG Key ID: 5B456E6AABA44A63

View File

@ -2,6 +2,10 @@
namespace Amp\Sql;
/**
* @template TFieldValue
* @extends \Traversable<int, array<string, TFieldValue>>
*/
interface Result extends \Traversable
{
/**