mirror of
https://codeberg.org/icewind/SMB.git
synced 2026-06-03 17:24:07 +02:00
Make NativeShare::getStat private to avoid confusion with NativeShare::stat
This commit is contained in:
parent
6e724b8986
commit
350e19c285
2 changed files with 20 additions and 13 deletions
|
|
@ -93,7 +93,10 @@ class NativeShare extends AbstractShare {
|
|||
while ($file = $this->getState()->readdir($dh)) {
|
||||
$name = $file['name'];
|
||||
if ($name !== '.' and $name !== '..') {
|
||||
$files [] = new NativeFileInfo($this, $path . '/' . $name, $name);
|
||||
$fullPath = $path . '/' . $name;
|
||||
$files [] = new NativeFileInfo($this, $fullPath, $name, function() use ($fullPath) {
|
||||
return $this->getStat($fullPath);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -109,13 +112,7 @@ class NativeShare extends AbstractShare {
|
|||
return new NativeFileInfo($this, $path, basename($path), $this->getStat($path));
|
||||
}
|
||||
|
||||
/**
|
||||
* Get fstat
|
||||
*
|
||||
* @param string $path
|
||||
* @return array
|
||||
*/
|
||||
public function getStat($path) {
|
||||
private function getStat($path) {
|
||||
return $this->getState()->stat($this->buildUrl($path));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue