mirror of
https://github.com/danog/amp.git
synced 2024-12-02 17:37:50 +01:00
17 lines
320 B
PHP
17 lines
320 B
PHP
<?php
|
|
|
|
namespace Amp;
|
|
|
|
/**
|
|
* @TODO This class is only necessary for PHP5; remove in favor of an anon class once PHP7 is required
|
|
*/
|
|
class CoroutineState {
|
|
use Struct;
|
|
public $reactor;
|
|
public $promisor;
|
|
public $generator;
|
|
public $returnValue;
|
|
public $currentPromise;
|
|
public $nestingLevel;
|
|
}
|