Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"php": "^7.2",
"illuminate/database": "^6.0|^7.0",
"illuminate/support": "^6.0|^7.0",
"longman/telegram-bot": "^0.61"
"php-telegram-bot/core": "^0.61"
},
"require-dev": {
"mockery/mockery": "~1.2",
Expand Down
2 changes: 1 addition & 1 deletion src/Laravel/Commands/WebhookCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespace PhpTelegramBot\Laravel\Commands;

use Illuminate\Console\Command;
use Longman\TelegramBot\Exception\TelegramException;
use PhpTelegramBot\Core\Exception\TelegramException;
use PhpTelegramBot\Laravel\PhpTelegramBotContract;

class WebhookCommand extends Command
Expand Down
2 changes: 1 addition & 1 deletion src/Laravel/PhpTelegramBot.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*/
namespace PhpTelegramBot\Laravel;

use Longman\TelegramBot\Telegram;
use PhpTelegramBot\Core\Telegram;

class PhpTelegramBot extends Telegram implements PhpTelegramBotContract
{
Expand Down
2 changes: 1 addition & 1 deletion src/Laravel/PhpTelegramBotContract.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
namespace PhpTelegramBot\Laravel;

/**
* @mixin \Longman\TelegramBot\Telegram
* @mixin \PhpTelegramBot\Core\Telegram
*/
interface PhpTelegramBotContract
{
Expand Down