Metaphore\Value::getResult PHP 메소드

getResult() 공개 메소드

public getResult ( ) : mixed
리턴 mixed
    public function getResult()
    {
        return $this->result;
    }

Usage Example

예제 #1
0
 public function testGetResult()
 {
     $result = 'rojo16';
     $tstamp = 16;
     $value = new Value($result, $tstamp);
     $this->assertEquals($result, $value->getResult());
 }