Learner\Services\Forms\AbstractFormService::isValid PHP Method

isValid() public method

Check whether the input data is valid.
public isValid ( ) : boolean
return boolean
    public function isValid()
    {
        $this->validator = Validator::make($this->getInputData(), $this->getRules(), $this->getMessages(), $this->getAttributes());
        return $this->validator->passes();
    }