Skip to content

Commit

Permalink
remove unused parameter (#13102)
Browse files Browse the repository at this point in the history
  • Loading branch information
themsaid authored and taylorotwell committed Apr 11, 2016
1 parent 2eb5551 commit de82cff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Filesystem/Filesystem.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public function exists($path)
public function get($path, $lock = false)
{
if ($this->isFile($path)) {
return $lock ? $this->sharedGet($path, $lock) : file_get_contents($path);
return $lock ? $this->sharedGet($path) : file_get_contents($path);
}

throw new FileNotFoundException("File does not exist at path {$path}");
Expand Down

0 comments on commit de82cff

Please sign in to comment.