PhpOffice\PhpPresentation\Style\Bullet::getBulletChar PHP Method

getBulletChar() public method

Get bullet char
public getBulletChar ( ) : string
return string
    public function getBulletChar()
    {
        return $this->bulletChar;
    }

Usage Example

示例#1
0
 /**
  * Test get/set bullet char
  */
 public function testSetGetBulletChar()
 {
     $object = new Bullet();
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Style\\Bullet', $object->setBulletChar());
     $this->assertEquals('-', $object->getBulletChar());
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Style\\Bullet', $object->setBulletChar('a'));
     $this->assertEquals('a', $object->getBulletChar());
 }