getValue() 공개 메소드

Return property value
public getValue ( ) : mixed
리턴 mixed
예제 #1
0
파일: ModelTest.php 프로젝트: gotcms/gotcms
 /**
  * Test
  *
  * @return void
  */
 public function testGetValue()
 {
     $this->assertEquals('', $this->object->getValue());
     $this->object->setValue('string');
     $this->assertEquals('string', $this->object->getValue());
 }