mirror of
https://github.com/openclassify/openclassify.git
synced 2026-04-14 11:12:09 -05:00
17 lines
290 B
PHP
17 lines
290 B
PHP
<?php
|
|
|
|
namespace Modules\Conversation\App\Support;
|
|
|
|
class QuickMessageCatalog
|
|
{
|
|
public static function all(): array
|
|
{
|
|
return [
|
|
'Hi',
|
|
'Is this listing still available?',
|
|
'What is your best price?',
|
|
'Thanks',
|
|
];
|
|
}
|
|
}
|