領収証発行サービス
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

18 行
319B

  1. <?php
  2. namespace App\Mail\Members;
  3. use App\Mail\BaseMailer;
  4. abstract class Member extends BaseMailer
  5. {
  6. public function getParams(): array
  7. {
  8. return array_merge($this->getMemberParams(), [
  9. 'email' => $this->__email
  10. ]);
  11. }
  12. abstract public function getMemberParams(): array;
  13. }