1
0
mirror of https://github.com/danog/amp.git synced 2024-12-02 17:37:50 +01:00
amp/lib/CoroutineState.php
2015-07-21 16:14:50 -04:00

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;
}