Skip to content

Commit

Permalink
comment out alias by default
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Nov 24, 2020
1 parent 5182e9c commit 612d166
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@
'Password' => Illuminate\Support\Facades\Password::class,
'Queue' => Illuminate\Support\Facades\Queue::class,
'Redirect' => Illuminate\Support\Facades\Redirect::class,
'Redis' => Illuminate\Support\Facades\Redis::class,
// 'Redis' => Illuminate\Support\Facades\Redis::class,
'Request' => Illuminate\Support\Facades\Request::class,
'Response' => Illuminate\Support\Facades\Response::class,
'Route' => Illuminate\Support\Facades\Route::class,
Expand Down

3 comments on commit 612d166

@stephenjude
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@taylorotwell any reason for this? Just trying to learn the design decision behind it.

@driesvints
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This collided with the global Redis class from phpredis which is now the default redis driver in Laravel.

@stephenjude
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Okay. That explains it. Thanks, @driesvints

Please sign in to comment.