Doc-comments: Format

This commit is contained in:
Jakub Vrana
2025-03-28 09:13:36 +01:00
parent 45c045382a
commit 5e88dae4e2
15 changed files with 85 additions and 184 deletions

View File

@@ -9,8 +9,6 @@ class TmpFile {
$this->handler = tmpfile();
}
/**
*/
function write(string $contents): void {
$this->size += strlen($contents);
fwrite($this->handler, $contents);