Gc\Datatype\AbstractDatatype::getName PHP 메소드

getName() 공개 메소드

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

Usage Example

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