1
0
mirror of https://github.com/danog/amp.git synced 2024-11-27 12:35:02 +01:00
amp/lib/CoroutineState.php
2015-07-29 23:23:53 -04:00

20 lines
407 B
PHP

<?php
namespace Amp;
/**
* This class only exists for legacy PHP5; applications should not treat
* it as part of the public API.
*
* @TODO Remove in favor of an anonymous class once PHP 5 is no longer supported
*/
class CoroutineState {
use Struct;
public $reactor;
public $promisor;
public $generator;
public $returnValue;
public $currentPromise;
public $nestingLevel;
}