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

getName() public méthode

Get datatype name
public getName ( ) : string
Résultat string
    public function getName()
    {
        return $this->getDatatype()->getName() . $this->getProperty()->getId();
    }

Usage Example

Exemple #1
0
 /**
  * Test
  *
  * @return void
  */
 public function testGetName()
 {
     $this->assertEquals('datatype' . $this->property->getId(), $this->object->getName());
 }