Skip to content

Commit

Permalink
Merge pull request #1082 from joshdifabio/patch-1
Browse files Browse the repository at this point in the history
Fix incorrect variable name ($schema -> $scheme)
  • Loading branch information
otoolec committed Mar 20, 2015
2 parents d0131d7 + c11b57e commit e40ac47
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/internal/Magento/Framework/Filesystem/Directory/Read.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,12 @@ protected function setPath($path)
* E.g.: /var/www/application/file.txt
*
* @param string $path
* @param string $schema
* @param string $scheme
* @return string
*/
public function getAbsolutePath($path = null, $schema = null)
public function getAbsolutePath($path = null, $scheme = null)
{
return $this->driver->getAbsolutePath($this->path, $path, $schema);
return $this->driver->getAbsolutePath($this->path, $path, $scheme);
}

/**
Expand Down

0 comments on commit e40ac47

Please sign in to comment.