Skip to content

Commit

Permalink
rename local var for more readability
Browse files Browse the repository at this point in the history
  • Loading branch information
Manuel Canga committed Nov 25, 2018
1 parent c4940fb commit 0ade53e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ public function get():string
return '';
}

public function save(string $cache)
public function save(string $content_for_caching)
{

return \file_put_contents($this->file, $cache);
return \file_put_contents($this->file, $content_for_caching);
}
}

0 comments on commit 0ade53e

Please sign in to comment.