mirror of
https://github.com/danog/amp.git
synced 2024-12-02 17:37:50 +01:00
10 lines
111 B
PHP
10 lines
111 B
PHP
<?php
|
|
|
|
interface FiberScheduler
|
|
{
|
|
/**
|
|
* Run the scheduler.
|
|
*/
|
|
public function run(): void;
|
|
}
|