Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
44 | public function handleRequest(Request $request): Response |
||
45 | { |
||
46 | $card = Card::createSimple( |
||
47 | 'Example of the Card Title', |
||
48 | "Example of card content. This card has just plain text content.\nThe content is formatted with line breaks to improve readability." |
||
49 | ); |
||
50 | $this->responseHelper->card($card); |
||
51 | |||
52 | return $this->responseHelper->respond('Text to speak back to the user.'); |
||
53 | } |
||
55 |