fill = new Fill(); } /** * @return Fill */ public function getFill() { return $this->fill; } /** * @param Fill $fill * @return Outline */ public function setFill(Fill $fill) { $this->fill = $fill; return $this; } /** * @return int */ public function getWidth() { return $this->width; } /** * Value in points * @param int $width * @return Outline */ public function setWidth($width) { $this->width = intval($width); return $this; } }