Specify BuilderCollection element type

This stops PHPStan from complaining:

Class Ramsey\Uuid\Builder\BuilderCollection extends generic class
Ramsey\Collection\AbstractCollection but does not specify its types: T
This commit is contained in:
Paweł Słowik
2021-05-24 21:55:54 +02:00
parent 90a87a7543
commit 605ff66148
+2
View File
@@ -26,6 +26,8 @@ use Traversable;
/**
* A collection of UuidBuilderInterface objects
*
* @extends AbstractCollection<UuidBuilderInterface>
*/
class BuilderCollection extends AbstractCollection
{