mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
318 B
318 B
TooManyTemplateParams
Emitted when using the @extends
/@implements
annotation to extend a class and adds too
many types.
/**
* @template-implements IteratorAggregate<int, string, int>
*/
class SomeIterator implements IteratorAggregate
{
public function getIterator() {
yield 5;
}
}