Arquivos
hhvm/hphp/system/classes/awaitable.php
T
Alex Suhan 903a2444bc Add Awaitable interface
Our PHP code can be simplified by using a common interface
instead of relying on instanceof for proper dispatch.
2013-03-21 15:01:49 -07:00

6 linhas
66 B
PHP

<?php
interface Awaitable {
public function getWaitHandle();
}