Skip to content

Commit 71dbe55

Browse files
committed
Update
1 parent 152fa56 commit 71dbe55

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

src/Dashboards/APCu/APCuTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ private function moreInfo(): string {
7777
private function viewKey(): string {
7878
$key = Http::get('key', '');
7979

80-
if (!apcu_exists($key)) {
80+
if (apcu_exists($key) === false) {
8181
Http::redirect();
8282
}
8383

tests/Clients/PredisTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@ protected function setUp(): void {
2020
$this->predis = new Predis(['host' => '127.0.0.1']);
2121
}
2222

23-
/**
24-
* @return Iterator
25-
*/
2623
public static function keysProvider(): Iterator {
2724
yield ['string'];
2825
yield ['set'];

0 commit comments

Comments
 (0)