Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
  • Loading branch information
CarlSchwan committed Feb 11, 2022
1 parent 6268048 commit abb0370
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/private/Memcache/ProfilerWrapperCache.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public function get($key) {
/** @inheritDoc */
public function set($key, $value, $ttl = 0) {
$start = microtime(true);
$ret = $this->wrappedCache->set($key, $value, $$ttl);
$ret = $this->wrappedCache->set($key, $value, $ttl);
$this->data['queries'][] = [
'start' => $start,
'end' => microtime(true),
Expand Down

0 comments on commit abb0370

Please sign in to comment.