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

getName() public méthode

Get datatype name, construct with datatype name and property_id
public getName ( ) : string
Résultat string
    public function getName()
    {
        return $this->name;
    }

Usage Example

 /**
  * Test
  *
  * @return void
  */
 public function testGetName()
 {
     $this->assertEquals('datatype', $this->object->getName());
 }