Skip to content

Commit

Permalink
Variable naming errors
Browse files Browse the repository at this point in the history
Variable naming errors
  • Loading branch information
hisune committed Jan 15, 2015
1 parent 093171a commit 1b7e268
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Tiny/Cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ public static function has($id)
protected function _file($id)
{
$instance = self::getInstance();
$fileNmae = $instance->_idToFileName($id);
return $instance->_options['cache_dir'] . $fileNmae;
$fileName = $instance->_idToFileName($id);
return $instance->_options['cache_dir'] . $fileName;
}

/**
Expand Down Expand Up @@ -294,4 +294,4 @@ public static function flush()
}
return true;
}
}
}

0 comments on commit 1b7e268

Please sign in to comment.