PhpOffice\PhpPresentation\Shape\Chart\Marker::getSymbol PHP Méthode

getSymbol() public méthode

public getSymbol ( ) : string
Résultat string
    public function getSymbol()
    {
        return $this->symbol;
    }

Usage Example

 public function testSymbol()
 {
     $object = new Marker();
     $expected = array_rand(Marker::$arraySymbol);
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Marker', $object->setSymbol($expected));
     $this->assertEquals($expected, $object->getSymbol());
 }
All Usage Examples Of PhpOffice\PhpPresentation\Shape\Chart\Marker::getSymbol