<?php /** * Created by PhpStorm. * User: 姜克保 * Date: 2020/5/20 * Time: 15:48 */ namespace Meibuyu\Micro\Service\Interfaces; interface MessageTemplateServiceInterface { /** * 返回替换后的模板内容 * @param int $template_id 模板id * @param array $replace 替换内容(注意顺序) * @return string */
public function getMessage(int $template_id, array $replace = []): string;
}