Merge pull request #26003 from nextcloud/enh/simplefile/getid
Add getID function to the simplefile implementation
This commit is contained in:
commit
f512705f8f
|
@ -180,4 +180,8 @@ class SimpleFile implements ISimpleFile {
|
|||
public function write() {
|
||||
return $this->file->fopen('w');
|
||||
}
|
||||
|
||||
public function getId(): int {
|
||||
return $this->file->getId();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue