parent = $redux; $this->field = $field; $this->value = $value; $this->current = $current; if ( isset( $this->field['validate_msg'] ) ) { $this->field['msg'] = $this->field['validate_msg']; unset( $this->field['validate_msg'] ); } $this->validate(); } /** * Validate. * * @return mixed */ abstract public function validate(); } }