Skip to content

Commit

Permalink
Removed unnecessary @var annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
Ocramius committed Dec 13, 2022
1 parent 85fa88a commit a1577d7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Check/Memcached.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,7 @@ public function check()
$memcached = new MemcachedService();
$memcached->addServer($this->host, $this->port);

$startTime = microtime(true);
/** @var false|array<string, false|array<string, int|string>> $stats */
$startTime = microtime(true);
$stats = @$memcached->getStats();
$responseTime = microtime(true) - $startTime;

Expand Down

0 comments on commit a1577d7

Please sign in to comment.