for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Phloppy;
class NodeInfo {
/**
* @var string
*/
private $id;
private $server;
* @var int
private $priority;
public function __construct($id, $server, $priority)
{
$this->id = $id;
$this->server = $server;
$this->priority = $priority;
}
* @return string
public function getServer()
return $this->server;
public function getId()
return $this->id;
* @return int
public function getPriority()
return $this->priority;