コード例 #1
0
 public function getResponse() : Response
 {
     return Response::create($this->request);
 }
 public function getResponse(Request $request) : Response
 {
     return Response::create($request)->withAttachment(Attachment::create()->setColor('danger')->setText($this->getMessage())->setFallback($this->getMessage()));
 }
コード例 #3
0
 public function respondToSlack(string $text) : Response
 {
     return Response::create($this->request)->withText($text);
 }