依赖注入实现邮件发布

依赖注入

1.目录树

/Di
/--comment.php
/--EmailSenderInterface.php
/--Gmail.php
/--index.php
/--Qmail.php

1.index.php
save());
2.comment.php
mail = $mail;
    }

    public function save()
    {
       return $this->mail->sendMail();
    }

}

3.EmailSenderInterface.php
4.Gmail.php
5.Qmail.php

你可能感兴趣的:(依赖注入实现邮件发布)