Eloquent\Phony\Matcher\MatcherResult::__construct PHP Метод

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

Construct a new matcher result.
public __construct ( boolean $isMatch, array $matcherMatches, array $argumentMatches )
$isMatch boolean True if successful match.
$matcherMatches array
$argumentMatches array
    public function __construct($isMatch, array $matcherMatches, array $argumentMatches)
    {
        $this->isMatch = $isMatch;
        $this->matcherMatches = $matcherMatches;
        $this->argumentMatches = $argumentMatches;
    }
MatcherResult