@@ -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 | |
@@ -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 DatumboxAPI |
| 9 | 6 | { |
| 10 | 7 | const version='1.0'; |
@@ -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,13 +2,13 @@ |
||
| 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 |
@@ -2,23 +2,16 @@ |
||
| 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 | { |