Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 269 Bytes

InvalidTraversableImplementation.md

File metadata and controls

10 lines (7 loc) · 269 Bytes

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