Completed
Push — master ( 039795...c571cc )
by Ricardo
02:33
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/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.