Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
frqnck committed May 3, 2017
1 parent 786282b commit 32de8fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/PsrSimpleCache/Pool.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public function get($key, $default = null)
*/
public function getMultiple($keys, $default = null)
{
$keys = static::_normalizedKeys($keys);
$keys = self::_normalizedKeys($keys);

$items = array();
foreach ($keys as $key) {
Expand Down Expand Up @@ -94,7 +94,7 @@ public function clear()
*/
public function deleteMultiple($keys)
{
$keys = static::_normalizedKeys($keys);
$keys = self::_normalizedKeys($keys);

try {
$bool = $this->cache_item_pool->deleteItems($keys);
Expand Down

0 comments on commit 32de8fb

Please sign in to comment.