* @created 2022-07-07 10:52:57 * @modified 2022-07-07 10:52:57 */ namespace Beike\Libraries; class Notification { /** * @param string $code * @param string $message * @param string $type email|telephone * @return bool */ public static function verifyCode(string $code, string $message, string $type): bool { return true; } }