Skip to content

Commit 710b9ed

Browse files
committed
use Illuminate\Support\Str instead of just Str, and sort use clauses
1 parent 8757a1d commit 710b9ed

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/Controllers/BaseController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
use App\Http\Controllers\Controller;
77
use Auth;
88
use Illuminate\Support\Facades\View;
9+
use Illuminate\Support\Str;
910
use Route;
10-
use Str;
1111

1212
class BaseController extends Controller
1313
{

src/Controllers/ReportController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace NickDeKruijk\Admin\Controllers;
44

55
use DB;
6-
use Str;
6+
use Illuminate\Support\Str;
77

88
class ReportController extends BaseController
99
{

src/UserCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
namespace NickDeKruijk\Admin;
44

5-
use Illuminate\Console\Command;
65
use App\User;
7-
use Str;
6+
use Illuminate\Console\Command;
7+
use Illuminate\Support\Str;
88

99
class UserCommand extends Command
1010
{

0 commit comments

Comments
 (0)