fix devops error

This commit is contained in:
ludo
2024-01-05 01:30:46 +01:00
parent 90b0af5b2d
commit 5144c1f7fd
128 changed files with 410 additions and 2580 deletions

View File

@@ -10,23 +10,11 @@ class Password implements Rule
private $message;
/**
* Create a new rule instance.
*
* @return void
*/
public function __construct($length = 8)
{
$this->length = $length;
}
/**
* Determine if the validation rule passes.
*
* @param string $attribute
* @param mixed $value
* @return bool
*/
public function passes($attribute, $value)
{
$rules = [
@@ -48,11 +36,6 @@ class Password implements Rule
return true;
}
/**
* Get the validation error message.
*
* @return string
*/
public function message()
{
return $this->message;