1
0
mirror of https://github.com/danog/amp.git synced 2024-12-11 17:09:40 +01:00
amp/lib/CoroutineState.php

22 lines
423 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
*
* @internal
*/
class CoroutineState {
use Struct;
public $reactor;
public $promisor;
public $generator;
public $returnValue;
public $currentPromise;
public $nestingLevel;
}