Completed
Push — master ( 21ba0c...a4807e )
by Benjamin
05:43 queued 01:11
created
src/Commands/AllCommand.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace Ben182\AutoTranslate\Commands;
4 4
 
5
+use Ben182\AutoTranslate\AutoTranslate;
6
+use Illuminate\Console\Command;
5 7
 use Illuminate\Support\Arr;
6 8
 use Illuminate\Support\Str;
7
-use Illuminate\Console\Command;
8
-use Ben182\AutoTranslate\AutoTranslate;
9 9
 
10 10
 class AllCommand extends Command
11 11
 {
Please login to merge, or discard this patch.
src/Commands/MissingCommand.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace Ben182\AutoTranslate\Commands;
4 4
 
5
+use Ben182\AutoTranslate\AutoTranslate;
6
+use Illuminate\Console\Command;
5 7
 use Illuminate\Support\Arr;
6 8
 use Illuminate\Support\Str;
7
-use Illuminate\Console\Command;
8
-use Ben182\AutoTranslate\AutoTranslate;
9 9
 
10 10
 class MissingCommand extends Command
11 11
 {
Please login to merge, or discard this patch.
src/Translators/DeeplTranslator.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace Ben182\AutoTranslate\Translators;
4 4
 
5
+use Ben182\AutoTranslate\Exceptions\LanguageCodeNotExist;
5 6
 use Scn\DeeplApiConnector\DeeplClient;
6
-use Scn\DeeplApiConnector\Model\TranslationConfig;
7 7
 use Scn\DeeplApiConnector\Exception\RequestException;
8
-use Ben182\AutoTranslate\Exceptions\LanguageCodeNotExist;
8
+use Scn\DeeplApiConnector\Model\TranslationConfig;
9 9
 
10 10
 class DeeplTranslator implements TranslatorInterface
11 11
 {
Please login to merge, or discard this patch.