diff --git a/src/Commands/Tinker.php b/src/Commands/Tinker.php index f66b3d7..d938f72 100644 --- a/src/Commands/Tinker.php +++ b/src/Commands/Tinker.php @@ -2,12 +2,12 @@ namespace BotMan\Tinker\Commands; -use Clue\React\Stdio\Stdio; -use React\EventLoop\Factory; -use Illuminate\Console\Command; use BotMan\BotMan\BotManFactory; use BotMan\BotMan\Cache\ArrayCache; use BotMan\Tinker\Drivers\ConsoleDriver; +use Clue\React\Stdio\Stdio; +use Illuminate\Console\Command; +use React\EventLoop\Factory; class Tinker extends Command { diff --git a/src/Drivers/ConsoleDriver.php b/src/Drivers/ConsoleDriver.php index 79e4b3b..f1da516 100644 --- a/src/Drivers/ConsoleDriver.php +++ b/src/Drivers/ConsoleDriver.php @@ -2,15 +2,15 @@ namespace BotMan\Tinker\Drivers; -use Clue\React\Stdio\Stdio; -use BotMan\BotMan\Users\User; -use Illuminate\Support\Collection; -use BotMan\BotMan\Messages\Incoming\Answer; use BotMan\BotMan\Interfaces\DriverInterface; -use BotMan\BotMan\Messages\Outgoing\Question; -use Symfony\Component\HttpFoundation\Response; +use BotMan\BotMan\Messages\Incoming\Answer; use BotMan\BotMan\Messages\Incoming\IncomingMessage; use BotMan\BotMan\Messages\Outgoing\OutgoingMessage; +use BotMan\BotMan\Messages\Outgoing\Question; +use BotMan\BotMan\Users\User; +use Clue\React\Stdio\Stdio; +use Illuminate\Support\Collection; +use Symfony\Component\HttpFoundation\Response; class ConsoleDriver implements DriverInterface {