903a2444bc
Our PHP code can be simplified by using a common interface instead of relying on instanceof for proper dispatch.
6 linhas
66 B
PHP
6 linhas
66 B
PHP
<?php
|
|
|
|
interface Awaitable {
|
|
public function getWaitHandle();
|
|
}
|