Respect\Validation\Rules\KeyNested::hasReference PHP Method

hasReference() public method

public hasReference ( $input )
    public function hasReference($input)
    {
        try {
            $this->getReferenceValue($input);
        } catch (ComponentException $cex) {
            return false;
        }
        return true;
    }