setFormatCode() публичный Метод

Set Format Code
public setFormatCode ( string $value = '' ) : Axis
$value string
Результат Axis
Пример #1
0
 public function testFormatCode()
 {
     $object = new Axis();
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Axis', $object->setFormatCode());
     $this->assertEquals('', $object->getFormatCode());
     $this->assertInstanceOf('PhpOffice\\PhpPresentation\\Shape\\Chart\\Axis', $object->setFormatCode('AAAA'));
     $this->assertEquals('AAAA', $object->getFormatCode());
 }