Skip to content

Commit 552189d

Browse files
committed
remove old refs
1 parent 3ee39e7 commit 552189d

File tree

5 files changed

+0
-7
lines changed

5 files changed

+0
-7
lines changed

authentication.md

-3
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,6 @@ Alternatively, once a user is authenticated, you may access the authenticated us
104104
namespace App\Http\Controllers;
105105

106106
use Illuminate\Http\Request;
107-
use Illuminate\Routing\Controller;
108107

109108
class ProfileController extends Controller
110109
{
@@ -202,7 +201,6 @@ We will access Laravel's authentication services via the `Auth` [facade](/docs/{
202201
namespace App\Http\Controllers;
203202

204203
use Auth;
205-
use Illuminate\Routing\Controller;
206204

207205
class AuthController extends Controller
208206
{
@@ -421,7 +419,6 @@ Next, you are ready to authenticate users! You will need two routes: one for red
421419
namespace App\Http\Controllers;
422420

423421
use Socialite;
424-
use Illuminate\Routing\Controller;
425422

426423
class AuthController extends Controller
427424
{

cache.md

-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ For example, let's import the `Cache` facade into a controller:
7878
namespace App\Http\Controllers;
7979

8080
use Cache;
81-
use Illuminate\Routing\Controller;
8281

8382
class UserController extends Controller
8483
{

container.md

-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,6 @@ The container will automatically inject dependencies for the classes it resolves
172172

173173
namespace App\Http\Controllers;
174174

175-
use Illuminate\Routing\Controller;
176175
use App\Users\Repository as UserRepository;
177176

178177
class UserController extends Controller

controllers.md

-1
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,6 @@ You may still type-hint the `Illuminate\Http\Request` and access your route para
229229
namespace App\Http\Controllers;
230230

231231
use Illuminate\Http\Request;
232-
use Illuminate\Routing\Controller;
233232

234233
class UserController extends Controller
235234
{

testing.md

-1
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,6 @@ When testing, you may often want to mock a call to a Laravel [facade](/docs/{{ve
547547
namespace App\Http\Controllers;
548548

549549
use Cache;
550-
use Illuminate\Routing\Controller;
551550

552551
class UserController extends Controller
553552
{

0 commit comments

Comments
 (0)