mirror of
https://github.com/danog/psalm.git
synced 2025-01-05 20:48:45 +01:00
04bb2b1182
* Prevent invalid Traversable implementation Fixes vimeo/psalm#5167 * Document new issue * CS fix
269 B
269 B
InvalidTraversableImplementation
Emitted when class incorrectly implements Traversable. Traversable needs to be
implemented by implementing either IteratorAggregate
or Iterator
<?php
final class C implements Traversable {} // will cause fatal error