match() public method

Determine whether two values match.
public match ( mixed $control, mixed $trial ) : boolean
$control mixed
$trial mixed
return boolean
Esempio n. 1
0
 public function test_that_matcher_is_strict_with_matches()
 {
     $s = new StandardMatcher();
     $this->assertFalse($s->match(false, null));
 }