Completed
Push — master ( 3c2674...5698f6 )
by Ricardo
06:00
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/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/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/Connector.php 1 patch
Unused Use Statements   +3 added lines, -18 removed lines patch added patch discarded remove patch
@@ -2,26 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace Integrations\Connectors;
4 4
 
5
-use Illuminate\Database\Eloquent\Model;
6 5
 use Log;
7
-use App\Models\User;
8
-
9
-use Integrations\Models\Token;
10
-
11
-use Integrations\Connectors\Github\Github;
12
-use Integrations\Connectors\Amazon\Amazon;
13
-use Integrations\Connectors\Gitlab\Gitlab;
14
-use Integrations\Connectors\Jira\Jira;
15
-use Integrations\Connectors\Novare\Novare;
16
-use Integrations\Connectors\Pipedrive\Pipedrive;
17
-use Integrations\Connectors\Sentry\Sentry;
18
-use Integrations\Connectors\Testlink\Testlink;
19
-use Integrations\Connectors\Zoho\Zoho;
20
-use Support\Components\Coders\Parser\ParseClass;
21
-use Muleta\Utils\Debugger\ErrorHelper;
22
-use Integrations\Models\Integration as IntegrationModel;
23
-use ReflectionGenerator;
6
+
24 7
 use Exception;
8
+use Integrations\Models\Integration as IntegrationModel;
9
+use Muleta\Utils\Debugger\ErrorHelper;
25 10
 use Muleta\Utils\Extratores\ClasserExtractor;
26 11
 use Support\Contracts\Output\OutputableTrait;
27 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.