Completed
Push — master ( 4cc058...75e069 )
by Ricardo
07:50
created
src/Connectors/Tumblr/Relation.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\Tumblr;
4 4
 
5
-use Log;
6
-use App\Models\User;
7
-
8 5
 class Relation extends Tumblr
9 6
 {
10 7
     
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/Connectors/Twitter/Twitter.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -6,8 +6,6 @@
 block discarded – undo
6 6
 
7 7
 namespace Integrations\Connectors\Twitter;
8 8
 
9
-use Log;
10
-use App\Models\User;
11 9
 use Abraham\TwitterOAuth\TwitterOAuth;
12 10
 
13 11
 use Integrations\Connectors\Connector;
Please login to merge, or discard this patch.
src/Connectors/Twitter/TwitterSentimentAnalysis.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 TwitterSentimentAnalysis extends Twitter
9 6
 {
10 7
     
Please login to merge, or discard this patch.
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/Http/Middleware/LdapService.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,13 +2,13 @@
 block discarded – undo
2 2
 
3 3
 namespace Integrations\Models\Access;
4 4
 
5
-use Integrations\Models\Access;
6 5
 use App\Models\Role;
7 6
 use App\Models\User;
8
-use Integrations\Models\UserRepo;
9
-use Integrations\Exceptions\LdapException;
10 7
 use Illuminate\Contracts\Auth\Authenticatable;
11 8
 use Illuminate\Database\Eloquent\Builder;
9
+use Integrations\Exceptions\LdapException;
10
+use Integrations\Models\Access;
11
+use Integrations\Models\UserRepo;
12 12
 
13 13
 /**
14 14
  * Class LdapService
Please login to merge, or discard this patch.
src/IntegrationsProvider.php 1 patch
Unused Use Statements   +2 added lines, -9 removed lines patch added patch discarded remove patch
@@ -2,23 +2,16 @@
 block discarded – undo
2 2
 
3 3
 namespace Integrations;
4 4
 
5
-use Illuminate\Foundation\AliasLoader;
5
+use Illuminate\Support\Facades\View;
6 6
 use Illuminate\Support\ServiceProvider;
7 7
 use Integrations\Services\IntegrationsService;
8
-use Illuminate\Support\Collection;
9
-use Illuminate\Support\Facades\View;
10 8
 
11
-use Log;
12
-use App;
13 9
 use Config;
10
+use Log;
14 11
 use Route;
15
-use Illuminate\Routing\Router;
16 12
 
17 13
 use Muleta\Traits\Providers\ConsoleTools;
18 14
 
19
-use Integrations\Facades\Integrations as IntegrationsFacade;
20
-use Illuminate\Contracts\Events\Dispatcher;
21
-
22 15
 
23 16
 class IntegrationsProvider extends ServiceProvider
24 17
 {
Please login to merge, or discard this patch.