openclassify/Modules/Conversation/App/Support/QuickMessageCatalog.php
2026-03-08 03:32:25 +03:00

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',
];
}
}