<?php interface i {} enum A1 implements i { case A; case B; } enum A2 implements i { case C; case D; } function foo(i $e) { var_dump($e); } foo(A1::A); foo(A2::C);
You have javascript disabled. You will not be able to edit any code.
Here you find the average performance (time & memory) of each version. A grayed out version indicates it didn't complete successfully (based on exit-code).