for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Tarantool\Client\Request;
use Tarantool\Client\IProto;
class JoinRequest implements Request
{
private $serverUuid;
public function __construct($serverUuid)
$this->serverUuid = $serverUuid;
}
public function getType()
return self::TYPE_JOIN;
public function getBody()
return [
IProto::SERVER_UUID => $this->serverUuid,
];