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;
class Status
{
/**
* @var array
*/
protected $database;
protected $server;
* @return array
public function getDatabase(): array
return $this->database;
}
public function getServer(): array
return $this->server;