1
0
Fork 0
mirror of synced 2024-06-28 11:10:46 +12:00
appwrite/src/Appwrite/Auth/Validator/Password.php
2021-04-13 10:46:30 +02:00

68 lines
1 KiB
PHP

<?php
namespace Appwrite\Auth\Validator;
use Utopia\Validator;
/**
* Password.
*
* Validates user password string
*/
class Password extends Validator
{
/**
* Get Description.
*
* Returns validator description
*
* @return string
*/
public function getDescription()
{
return 'Password must be between 6 and 32 chars and contain ...';
}
/**
* Is valid.
*
* Validation username
*
* @param mixed $value
*
* @return bool
*/
public function isValid($value)
{
if (\strlen($value) < 6 || \strlen($value) > 32) {
return false;
}
return true;
}
/**
* Is array
*
* Function will return true if object is array.
*
* @return bool
*/
public function isArray(): bool
{
return false;
}
/**
* Get Type
*
* Returns validator type.
*
* @return string
*/
public function getType(): string
{
return self::TYPE_STRING;
}
}