Gc\Datatype\AbstractDatatype::getName PHP Method

getName() public method

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

Usage Example

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