Skip to content
Prev Previous commit
Next Next commit
Fix style issues
  • Loading branch information
muglug committed Apr 17, 2018
commit 04c970a4b9d9c7c5ef155e0401874b4dd491de30
1 change: 0 additions & 1 deletion app/Console/Commands/PingVersionServer.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
use App\Instance;
use GuzzleHttp\Client;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\App;
use Illuminate\Console\ConfirmableTrait;
use Symfony\Component\Console\Output\OutputInterface;

Expand Down
1 change: 0 additions & 1 deletion app/Console/Commands/SetupProduction.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

use App\Account;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\DB;

class SetupProduction extends Command
{
Expand Down
1 change: 0 additions & 1 deletion app/Helpers/DateHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

use Carbon\Carbon;
use Jenssegers\Date\Date;
use Illuminate\Support\Facades\Auth;

class DateHelper
{
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Controllers/ContactsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
use App\Jobs\ResizeAvatars;
use App\Helpers\VCardHelper;
use Illuminate\Http\Request;
use Barryvdh\Debugbar\Facade as Debugbar;
use Illuminate\Support\Facades\Auth;
use Barryvdh\Debugbar\Facade as Debugbar;
use Illuminate\Support\Facades\Validator;

class ContactsController extends Controller
Expand Down
2 changes: 1 addition & 1 deletion app/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
namespace App;

use Carbon\Carbon;
use Laravel\Passport\HasApiTokens;
use Illuminate\Support\Facades\DB;
use Laravel\Passport\HasApiTokens;
use Illuminate\Support\Facades\App;
use Illuminate\Notifications\Notifiable;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

use App\Account;
Use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\DB;
use Illuminate\Database\Migrations\Migration;

class PopulateRelationshipTypeTablesWithDefaultValues extends Migration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

use App\Account;
use App\Relationship;
Use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Migrations\Migration;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

use App\Account;
Use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Migrations\Migration;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

Use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

use App\Relationship;
Use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\DB;
use Illuminate\Database\Migrations\Migration;

class FixContactsData extends Migration
Expand Down
2 changes: 1 addition & 1 deletion database/migrations/2018_04_13_230536_update_changelog.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

Use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\DB;
use Illuminate\Database\Migrations\Migration;

class UpdateChangelog extends Migration
Expand Down