for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Scientist\Matchers;
/**
* Class ClosureMatcher
*
* @package \Scientist\Matchers
*/
class ClosureMatcher implements Matcher
{
* A closure which attempts to match the results.
* @var \Closure
protected $closure;
* Create a new matcher instance based on a closure.
* @param \Closure $closure The closure to use
public function __construct(\Closure $closure)
$this->closure = $closure;
}
* @inheritDoc
public function match($control, $trial)
return call_user_func($this->closure, $control, $trial);