getValue() публичный Метод

Get the callback result value.
public getValue ( ) : mixed
Результат mixed
Пример #1
0
 /**
  * Determine whether trial results match the control.
  *
  * @param \Scientist\Matchers\Matcher $matcher
  * @param \Scientist\Result           $control
  * @param \Scientist\Result[]         $trials
  */
 protected function determineMatches(Matcher $matcher, Result $control, array $trials = [])
 {
     foreach ($trials as $trial) {
         if ($matcher->match($control->getValue(), $trial->getValue())) {
             $trial->setMatch(true);
         }
     }
 }
Пример #2
0
 public function test_result_can_have_value()
 {
     $r = new Result();
     $r->setValue('foo');
     $this->assertEquals('foo', $r->getValue());
 }