Skip to content

Instantly share code, notes, and snippets.

View gotterdemarung's full-sized avatar

Антон Дорофеев gotterdemarung

View GitHub Profile
@gotterdemarung
gotterdemarung / traversable.php
Created October 11, 2013 12:04
Unexpected Traversable behavior
<?php
echo 'Declaring interface: ';
interface T extends Traversable {}
echo 'OK' . PHP_EOL;
echo 'Abstract class with right interfaces order:';
abstract class A implements Iterator, T {} // OK
echo 'OK' . PHP_EOL;