diff --git a/lib/internal/Magento/Framework/Filesystem/Directory/Read.php b/lib/internal/Magento/Framework/Filesystem/Directory/Read.php index 33f09a43d326f..189a0c8b24644 100644 --- a/lib/internal/Magento/Framework/Filesystem/Directory/Read.php +++ b/lib/internal/Magento/Framework/Filesystem/Directory/Read.php @@ -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); } /**