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