refactor(db): remove redundant docblock from fileIdExists method

The method name is self-explanatory, making the docblock comment
unnecessary.

Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
This commit is contained in:
Vitor Mattos 2025-12-03 01:01:14 -03:00
parent ebf107f22b
commit c82875fcfc
No known key found for this signature in database
GPG key ID: 6FECE2AD4809003A

View file

@ -167,9 +167,6 @@ class FileMapper extends QBMapper {
return $file;
}
/**
* Check if file exists
*/
public function fileIdExists(int $nodeId): bool {
$exists = array_filter($this->file, fn ($f) => $f->getNodeId() === $nodeId || $f->getSignedNodeId() === $nodeId);
if (!empty($exists)) {