point1 = $point1; $this->point2 = $point2; $this->thickness = $thickness; $this->color = $color; } /** * @return array */ public function getPoint1() { return $this->point1; } /** * @return array */ public function getPoint2() { return $this->point2; } /** * @return int */ public function getThickness() { return $this->thickness; } /** * @return Color */ public function getColor() { return $this->color; } }