Metaphore\Value::getResult PHP Méthode

getResult() public méthode

public getResult ( ) : mixed
Résultat mixed
    public function getResult()
    {
        return $this->result;
    }

Usage Example

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