getFontSize() public method

Gets currently configured font size.
public getFontSize ( ) : String
return String with font size.
Example #1
0
 /**
  * Test for getFontSize
  *
  * @return void
  */
 public function testGetFontSize()
 {
     $this->assertEquals($this->object->getFontSize(), '82%');
     $GLOBALS['PMA_Config']->set('fontsize', '12px');
     $this->assertEquals($this->object->getFontSize(), '12px');
 }