--TEST-- PHP Spec test generated from ./lexical_structure/tokens/point.php --FILE-- x = $x; $this->y = $y; } public function move($x, $y) { $this->x = $x; $this->y = $y; } public function translate($x, $y) { $this->x += $x; $this->y += $y; } public function __toString() { return '(' . $this->x . ',' . $this->y . ')'; } } --EXPECT--