PhpOffice\PhpPresentation\Style\Outline::setFill PHP Method

setFill() public method

public setFill ( PhpOffice\PhpPresentation\Style\Fill $fill ) : Outline
$fill PhpOffice\PhpPresentation\Style\Fill
return Outline
    public function setFill(Fill $fill)
    {
        $this->fill = $fill;
        return $this;
    }

Usage Example

Ejemplo n.º 1
0
 /**
  * Test get/set fill
  */
 public function testSetGetFill()
 {
     $object = new Outline();
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Style\\Fill', $object->getFill());
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Style\\Outline', $object->setFill(new Fill()));
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Style\\Fill', $object->getFill());
 }