Skip to content

Commit c11b57e

Browse files
committed
Fix incorrect variable name ($schema -> $scheme)
1 parent d0131d7 commit c11b57e

File tree

1 file changed

+3
-3
lines changed
  • lib/internal/Magento/Framework/Filesystem/Directory

1 file changed

+3
-3
lines changed

lib/internal/Magento/Framework/Filesystem/Directory/Read.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,12 @@ protected function setPath($path)
6565
* E.g.: /var/www/application/file.txt
6666
*
6767
* @param string $path
68-
* @param string $schema
68+
* @param string $scheme
6969
* @return string
7070
*/
71-
public function getAbsolutePath($path = null, $schema = null)
71+
public function getAbsolutePath($path = null, $scheme = null)
7272
{
73-
return $this->driver->getAbsolutePath($this->path, $path, $schema);
73+
return $this->driver->getAbsolutePath($this->path, $path, $scheme);
7474
}
7575

7676
/**

0 commit comments

Comments
 (0)