Skip to content

Commit 3dc87ce

Browse files
committed
[cache] Fix typo in ArrayCache::remove()
1 parent 77ee907 commit 3dc87ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/React/Cache/ArrayCache.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ public function set($key, $value)
2424

2525
public function remove($key)
2626
{
27-
unset($this->$data[$key]);
27+
unset($this->data[$key]);
2828
}
2929
}

0 commit comments

Comments
 (0)