Skip to content

Commit

Permalink
Fixed code style
Browse files Browse the repository at this point in the history
  • Loading branch information
Felix-Balfoort committed Apr 26, 2022
1 parent b00081d commit 3a8c69e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Ganesha/Storage/Adapter/RedisStore.php
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ public function get(string $key)
{
try {
$result = $this->redis->get($key);
if ($this->redis instanceof \Predis\ClientInterface && $result === null) {
if ($this->redis instanceof \Predis\ClientInterface && $result === null) {
return false;
}
return $result;
Expand Down

0 comments on commit 3a8c69e

Please sign in to comment.