1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-01 22:40:39 +02:00

[ticket/14168] Fix docblock in manager

PHPBB3-14168
This commit is contained in:
Marc Alexander
2015-10-09 14:35:40 +02:00
parent 52dccd3dba
commit a0167ad410

View File

@@ -51,9 +51,9 @@ class manager
* @return int|bool Number of deleted attachments or false if something * @return int|bool Number of deleted attachments or false if something
* went wrong during attachment deletion * went wrong during attachment deletion
*/ */
public function delete($mode, $id, $resync = true) public function delete($mode, $ids, $resync = true)
{ {
return $this->delete->delete($mode, $id, $resync); return $this->delete->delete($mode, $ids, $resync);
} }
/** /**