Skip to content

Commit

Permalink
Format.
Browse files Browse the repository at this point in the history
  • Loading branch information
ericdowell committed Nov 24, 2019
1 parent f2e5e63 commit b28acda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Redis/Connectors/PhpRedisConnector.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ protected function createClient(array $config)
return tap(new Redis, function ($client) use ($config) {
if ($client instanceof RedisFacade) {
$message = 'Please remove or rename the Redis facade alias in your "app" configuration file in order to avoid collision with the PHP Redis extension.';
if (!extension_loaded('redis')) {
if (! extension_loaded('redis')) {
$message = 'Please make sure the PHP Redis extension is installed and enabled.';
}
throw new LogicException($message);
Expand Down

0 comments on commit b28acda

Please sign in to comment.