Skip to content

Commit e5253ce

Browse files
committed
adding phpDoc
1 parent 75835a2 commit e5253ce

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

src/Commands/InstallTelegramLogsCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@ public function handle()
5656

5757
// 5. Ask user to star the GitHub repository
5858
$this->newLine();
59-
$this->info('🌟 If you find this package useful, please consider starring it on GitHub!');
59+
$this->info('show some love, please consider starring it on GitHub!');
6060
$this->line('GitHub Repository: https://github.com/Uzziahlukeka/telegrammonitor');
6161

62-
if ($this->confirm('Would you like to open the GitHub repository now?', false)) {
62+
if ($this->confirm('Would you like to open the GitHub repository now?', true)) {
6363
if (PHP_OS_FAMILY === 'Darwin') {
6464
exec('open https://github.com/Uzziahlukeka/telegrammonitor');
6565
} elseif (PHP_OS_FAMILY === 'Windows') {

src/Facades/TelegramMessage.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,15 @@
66

77
class TelegramMessage extends Facade
88
{
9+
/**
10+
* @method static array|bool message(string $text)
11+
* @method static array|bool send(string $text, array $options = [])
12+
* @method static array|bool toChat(string $chatId, string $text, array $options = [])
13+
* @method static array|bool test()
14+
* @method static array|bool getBotInfo()
15+
*
16+
* @see \Uzhlaravel\Telegramlogs\TelegramMessage
17+
*/
918
protected static function getFacadeAccessor()
1019
{
1120
return 'telegram-message';

0 commit comments

Comments
 (0)