for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace CCT\Kong\Model;
use CCT\Kong\Model\Structure\ExtraFieldsInterface;
use CCT\Kong\Model\Structure\ExtraFieldsTrait;
class Kong implements ExtraFieldsInterface
{
use ExtraFieldsTrait;
/**
* @var string
*/
protected $hostname;
protected $luaVersion;
protected $tagLine;
protected $version;
* @return string
public function getHostname(): string
return $this->hostname;
}
public function getLuaVersion(): string
return $this->luaVersion;
public function getTagLine(): string
return $this->tagLine;
public function getVersion(): string
return $this->version;