<?php interface ContainsStmts {} // BC break patch class_alias(ContainsStmts::class, StmtsAwareInterface::class); class SomeNode implements ContainsStmts {} $obj = new SomeNode(); // old should keep working var_dump($obj instanceof StmtsAwareInterface); // new var_dump($obj instanceof ContainsStmts);
You have javascript disabled. You will not be able to edit any code.