Skip to content

Commit 7f0fa38

Browse files
committed
fix: fix phpstan
1 parent 095e919 commit 7f0fa38

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/redis/src/Redis.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public function __call($name, $arguments)
5353
);
5454

5555
if ($hasContextConnection) {
56-
return $hasError ? null : $result;
56+
return $hasError ? null : $result; // @phpstan-ignore-line
5757
}
5858

5959
// Release connection.
@@ -67,7 +67,7 @@ public function __call($name, $arguments)
6767
$this->releaseContextConnection();
6868
});
6969

70-
return $hasError ? null : $result;
70+
return $hasError ? null : $result; // @phpstan-ignore-line
7171
}
7272

7373
// Release the connection after command executed.

0 commit comments

Comments
 (0)