@@ -2,9 +2,6 @@ |
||
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 |
@@ -6,8 +6,6 @@ |
||
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; |
@@ -2,9 +2,6 @@ |
||
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 |
@@ -2,9 +2,6 @@ |
||
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 |
@@ -2,7 +2,6 @@ |
||
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. |
@@ -3,7 +3,6 @@ |
||
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 | { |
@@ -2,11 +2,11 @@ |
||
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 | { |
@@ -2,26 +2,11 @@ |
||
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 |
@@ -2,11 +2,8 @@ |
||
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 |