getValueName() public méthode

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