for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Arcanedev\Support\Validation;
use Illuminate\Contracts\Validation\Rule as RuleContract;
/**
* Class Rule
*
* @author ARCANEDEV <[email protected]>
*/
abstract class Rule implements RuleContract
{
/* -----------------------------------------------------------------
| Properties
| -----------------------------------------------------------------
* The message that should be used when validation fails.
* @var string|array
protected $message;
| Getters & Setters
* Set the message that should be used when the rule fails.
* @param string|array $message
* @return $this
public function withMessage($message)
$this->message = $message;
return $this;
}
* Get the validation error message.
* @return string|array
public function message()
return $this->message;
| Other Methods
* Fail if the validation rule.
* @return bool
protected function fail($message): bool
$this->withMessage($message);
return false;