1
0
mirror of https://github.com/danog/amp.git synced 2024-12-02 17:37:50 +01:00
amp/test/Loop/EventLoopTest.php

17 lines
269 B
PHP

<?php
namespace Amp\Test\Loop;
use Amp\Loop\EventDriver;
/**
* @requires extension event
*/
class EventDriverTest extends DriverTest {
public function getFactory(): callable {
return function () {
return new EventDriver;
};
}
}