ImapApi.php 763 字节
<?php

namespace App\Mail\Jobs;

/**
 *
 * @time 2022/7/29 15:11
 * Class ImapApi
 * @package App\Mail\Jobs
 */
class ImapApi {

    /**
     * @var ImapApi
     */
    private static $Instance;

    /**
     * 如 imap.qq.com
     * @var string
     */
    private $host;

    /**
     * 邮箱地址
     * @var string
     */
    private $username;

    /**
     * 密码
     * @var string
     */
    private $password;

    /**
     * 端口
     * @var int
     */
    private $port = 993;


    private function __construct(){}


    /**
     * @return ImapApi
     */
    public static function getInstance(): ImapApi
    {
        if(!self::$Instance){
            self::$Instance =   new static();
        }

        return self::$Instance;
    }



}