mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 04:23:55 +00:00
42 lines
626 B
PHP
42 lines
626 B
PHP
<?php
|
|
|
|
namespace App\Classes\Modules\Accounts\Standards\Rules;
|
|
|
|
|
|
use App\Classes\General\Abstracts\AbstractRule;
|
|
|
|
class CanResendEmailVerification extends AbstractRule
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
* @return bool
|
|
*/
|
|
protected function authorized(): bool
|
|
{
|
|
return true;
|
|
|
|
}
|
|
|
|
/**
|
|
* @param $object
|
|
* @return bool
|
|
*/
|
|
protected function validators($object): bool
|
|
{
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
/**
|
|
* @param $object
|
|
* @return bool
|
|
*/
|
|
protected function criteria($object): bool
|
|
{
|
|
return $this->passwordResetTokenExists->execute($object->getToken());
|
|
}
|
|
|
|
} |