From 3434eb815b315b0952fd8965264278016a4b161d Mon Sep 17 00:00:00 2001 From: Marcel Pociot Date: Sat, 8 Feb 2020 15:27:55 +0000 Subject: [PATCH] Apply fixes from StyleCI --- src/Commands/Tinker.php | 6 +++--- src/Drivers/ConsoleDriver.php | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) 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 {