Skip to content

Commit

Permalink
compatibility issue MemoryFile
Browse files Browse the repository at this point in the history
  • Loading branch information
derjoachim committed May 27, 2024
1 parent 11af843 commit e7706cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions www/go/core/fs/MemoryFile.php
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@ public function setName(string $name) {
$this->path = $name;
}

public function appendNumberToNameIfExists():string {
return $this->path;
public function appendNumberToNameIfExists():self {
return $this;
}

public function output(bool $sendHeaders = true, bool $useCache = true, array $headers = [], bool $inline = true) {
Expand Down

0 comments on commit e7706cb

Please sign in to comment.