Neos\Fusion\TypoScriptObjects\MatcherImplementation::evaluate PHP Method

evaluate() public method

If $condition matches, render $type and return it. Else, return MATCH_NORESULT.
public evaluate ( ) : mixed
return mixed
    public function evaluate()
    {
        if ($this->getCondition()) {
            return parent::evaluate();
        } else {
            return CaseImplementation::MATCH_NORESULT;
        }
    }