Skip to content

Commit

Permalink
use Illuminate\Support\Str instead of just Str, and sort use clauses
Browse files Browse the repository at this point in the history
  • Loading branch information
nickdekruijk committed Mar 19, 2020
1 parent 8757a1d commit 710b9ed
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Controllers/BaseController.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
use App\Http\Controllers\Controller;
use Auth;
use Illuminate\Support\Facades\View;
use Illuminate\Support\Str;
use Route;
use Str;

class BaseController extends Controller
{
Expand Down
2 changes: 1 addition & 1 deletion src/Controllers/ReportController.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace NickDeKruijk\Admin\Controllers;

use DB;
use Str;
use Illuminate\Support\Str;

class ReportController extends BaseController
{
Expand Down
4 changes: 2 additions & 2 deletions src/UserCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace NickDeKruijk\Admin;

use Illuminate\Console\Command;
use App\User;
use Str;
use Illuminate\Console\Command;
use Illuminate\Support\Str;

class UserCommand extends Command
{
Expand Down

0 comments on commit 710b9ed

Please sign in to comment.