mirror of
https://codeberg.org/icewind/SMB.git
synced 2026-06-03 17:24:07 +02:00
fix statCache phpdoc
This commit is contained in:
parent
2754259528
commit
1870e2ee81
1 changed files with 2 additions and 2 deletions
|
|
@ -66,7 +66,7 @@ class NativeFileInfo implements IFileInfo {
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
protected function stat() {
|
protected function stat() {
|
||||||
if (!$this->statCache) {
|
if (is_null($this->statCache)) {
|
||||||
$this->statCache = $this->share->getStat($this->getPath());
|
$this->statCache = $this->share->getStat($this->getPath());
|
||||||
}
|
}
|
||||||
return $this->statCache;
|
return $this->statCache;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue