getType() 공개 메소드

Get form element object type.
public getType ( ) : string
리턴 string
예제 #1
0
 public function testGetType()
 {
     $e = new Element('text', 'email');
     $this->assertEquals('text', $e->getType());
 }