for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace rtens\domin\delivery\web\renderers\charting\data;
class ScatterDataPoint {
/** @var double */
private $x;
private $y;
private $r;
/**
* @param float $x
* @param float $y
* @param float $r
*/
public function __construct($x, $y, $r = 1.0) {
$this->x = $x;
$this->y = $y;
$this->r = $r;
}
* @return float
public function getX() {
return $this->x;
public function getY() {
return $this->y;
public function getR() {
return $this->r;