getValueName() 공개 메소드

This name can be used as placeholder of the value when displaying the option's usage.
public getValueName ( ) : string
리턴 string The name of the option value.
예제 #1
0
 public function testSetValueName()
 {
     $option = new Option('option', null, 0, null, null, 'value-name');
     $this->assertSame('value-name', $option->getValueName());
 }