mirror of
https://github.com/danog/amp.git
synced 2025-01-10 15:08:19 +01:00
11 lines
161 B
PHP
11 lines
161 B
PHP
|
<?php
|
||
|
|
||
|
namespace Amp;
|
||
|
|
||
|
final class CoroutineStruct extends Struct {
|
||
|
public $reactor;
|
||
|
public $promisor;
|
||
|
public $generator;
|
||
|
public $promisifier;
|
||
|
}
|