mirror of
https://github.com/danog/asyncConstruct.git
synced 2024-11-30 04:18:58 +01:00
20 lines
338 B
PHP
20 lines
338 B
PHP
<?php
|
|
|
|
namespace danog\Test\Fixtures;
|
|
|
|
use danog\BlockingConstruct;
|
|
|
|
use function Amp\delay;
|
|
|
|
class BlockingConstructTest
|
|
{
|
|
use BlockingConstruct;
|
|
public $inited = false;
|
|
protected function __construct_async(int $delay): \Generator
|
|
{
|
|
yield delay($delay);
|
|
$this->inited = true;
|
|
return true;
|
|
}
|
|
}
|