valid; } /** * Set whether or not the credential check was valid * * @param bool $valid * @return Result */ public function setValid($valid) { $this->valid = $valid; return $this; } /** * Get the message associated with an invalid credential check * * @return string */ public function getMessage() { return $this->message; } /** * Set the message associated with an invalid credential check * * @param string $message * @return Result */ public function setMessage($message) { $this->message = $message; return $this; } /** * Get arguments for the message when ran through the localization layer * * @return array */ public function getArguments() { return $this->arguments; } /** * Set arguments for the message when ran through the localization layer * * @param array $arguments * @return Result */ public function setArguments($arguments) { $this->arguments = $arguments; return $this; } }