appwrite/src/Appwrite/GraphQL/ResolverLock.php
2026-04-13 17:10:38 +05:30

17 lines
271 B
PHP

<?php
namespace Appwrite\GraphQL;
use Swoole\Coroutine\Channel;
final class ResolverLock
{
public Channel $channel;
public ?int $owner = null;
public int $depth = 0;
public function __construct()
{
$this->channel = new Channel(1);
}
}