提交 42e8cefc 编写于 作者: V vidy 提交者: 安正超

make template, content property can be callable (#132)

上级 f755a292
......@@ -80,7 +80,7 @@ class Message implements MessageInterface
*/
public function getContent(GatewayInterface $gateway = null)
{
return $this->content;
return is_callable($this->content) ? $this->content($gateway) : $this->content;
}
/**
......@@ -92,7 +92,7 @@ class Message implements MessageInterface
*/
public function getTemplate(GatewayInterface $gateway = null)
{
return $this->template;
return is_callable($this->template) ? $this->template($gateway): $this->template;
}
/**
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册