Completed
Push — master ( 464782...4147e3 )
by Ricardo
01:46
created
src/Connectors/Wikipedia/Search.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -2,9 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Integrations\Connectors\Wikipedia;
4 4
 
5
-use Log;
6
-use App\Models\User;
7
-
8 5
 class Search extends Wikipedia
9 6
 {
10 7
     
Please login to merge, or discard this patch.
src/Connectors/Wikipedia/WikiToApi.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Integrations\Connectors\Wikipedia;
4 4
 
5
-use Log;
6 5
 use App\Models\User;
7 6
 
8 7
 /* PHP-Wiki-API: This is a simple class to get short Wikipedia info boxes from a given Keyword.
Please login to merge, or discard this patch.
src/Exceptions/WebhookException.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Integrations\Exceptions;
4 4
 
5 5
 use Exception;
6
-use Illuminate\Http\Request;
7 6
 
8 7
 class WebhookException extends Exception
9 8
 {
Please login to merge, or discard this patch.
src/Traits/SocialiteHelper.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,11 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace Integrations\Traits;
4 4
 
5
-use Auth;
6
-use Socialite;
7
-use Illuminate\Http\Request;
8 5
 use App\Models\User;
6
+use Auth;
9 7
 use Flash;
8
+use Illuminate\Http\Request;
9
+use Socialite;
10 10
 
11 11
 trait SocialiteHelper
12 12
 {
Please login to merge, or discard this patch.
src/Connectors/Gitlab/Import.php 1 patch
Unused Use Statements   +1 added lines, -4 removed lines patch added patch discarded remove patch
@@ -2,11 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Integrations\Connectors\Gitlab;
4 4
 
5
-use Log;
6
-use App\Models\User;
7
-use Fabrica\Models\Code\Project;
8
-use Fabrica\Bundle\CoreBundle\EventDispatcher\FabricaEvents;
9 5
 use Fabrica\Bundle\CoreBundle\EventDispatcher\Event\ProjectEvent;
6
+use Fabrica\Models\Code\Project;
10 7
 
11 8
 /**
12 9
  * https://github.com/GitLabPHP/Client/blob/9.18/lib/Gitlab/Api/Projects.php
Please login to merge, or discard this patch.
src/IntegrationsProvider.php 1 patch
Unused Use Statements   -7 removed lines patch added patch discarded remove patch
@@ -2,22 +2,15 @@
 block discarded – undo
2 2
 
3 3
 namespace Integrations;
4 4
 
5
-use App;
6 5
 use Config;
7
-use Illuminate\Contracts\Events\Dispatcher;
8
-use Illuminate\Foundation\AliasLoader;
9
-use Illuminate\Routing\Router;
10 6
 
11
-use Illuminate\Support\Collection;
12 7
 use Illuminate\Support\Facades\View;
13 8
 use Illuminate\Support\ServiceProvider;
14
-use Integrations\Facades\Integrations as IntegrationsFacade;
15 9
 use Integrations\Services\IntegrationsService;
16 10
 
17 11
 use Log;
18 12
 
19 13
 use Muleta\Traits\Providers\ConsoleTools;
20
-use Route;
21 14
 
22 15
 class IntegrationsProvider extends ServiceProvider
23 16
 {
Please login to merge, or discard this patch.
src/Http/Controllers/Webhook/StoreController.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,8 +4,8 @@
 block discarded – undo
4 4
 namespace Integrations\Http\Controllers\Webhook;
5 5
 
6 6
 
7
-use Integrations\Http\Controllers\Controller;
8 7
 use BotMan\BotMan\BotMan;
8
+use Integrations\Http\Controllers\Controller;
9 9
 
10 10
 class StoreController extends Controller
11 11
 {
Please login to merge, or discard this patch.
src/Connectors/Twitter/DatumboxAPI.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -2,9 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Integrations\Connectors\Twitter;
4 4
 
5
-use Log;
6
-use App\Models\User;
7
-
8 5
 class DatumboxAPI
9 6
 {
10 7
     const version='1.0';
Please login to merge, or discard this patch.
src/Http/Controllers/RiCa/WebServicos/TokenController.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -2,12 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace Integrations\Http\Controllers\RiCa\WebServicos;
4 4
 
5
-use Illuminate\Http\Request;
6
-use Integrations\Exceptions\Exception;
7 5
 use Integrations\Http\Controllers\Controller as Base;
8 6
 use Integrations\Models\Token;
9 7
 // use Pedreiro\Http\Controllers\Admin\Base;
10
-use Yajra\Datatables\Datatables;
11 8
 
12 9
 class TokenController extends Base
13 10
 {
Please login to merge, or discard this patch.