Gc\Datatype\AbstractDatatype\AbstractEditor::getValue PHP Méthode

getValue() public méthode

Return property value
public getValue ( ) : string
Résultat string
    public function getValue()
    {
        return $this->getProperty()->getValue();
    }

Usage Example

Exemple #1
0
 /**
  * Test
  *
  * @return void
  */
 public function testSetValue()
 {
     $this->object->setValue('test');
     $this->assertEquals('test', $this->object->getValue());
 }