1
0
mirror of https://github.com/danog/amp.git synced 2024-11-26 20:15:00 +01:00

Fix tabs → spaces

This commit is contained in:
Niklas Keller 2017-05-16 20:08:27 +02:00
parent 47357f209d
commit fdf18dedd7

View File

@ -11,18 +11,18 @@ include __DIR__.'/../../vendor/autoload.php';
use Amp\Loop;
Loop::run(function() {
Loop::setState('test', new class {
private $handle;
function __construct() {
$this->handle = Loop::repeat(10, function() {});
}
function __destruct() {
Loop::cancel($this->handle);
print "ok";
}
});
Loop::delay(0, [Loop::class, "stop"]);
Loop::run(function () {
Loop::setState('test', new class {
private $handle;
public function __construct() {
$this->handle = Loop::repeat(10, function () {});
}
public function __destruct() {
Loop::cancel($this->handle);
print "ok";
}
});
Loop::delay(0, [Loop::class, "stop"]);
});
?>