aboutsummaryrefslogtreecommitdiffstats
path: root/includes/libs/ReplacementArray.php
diff options
context:
space:
mode:
authorthiemowmde <thiemo.kreuz@wikimedia.de>2025-01-16 14:24:44 +0100
committerthiemowmde <thiemo.kreuz@wikimedia.de>2025-01-16 14:24:44 +0100
commit659df897ea828bba243ca9879875870c35e7bb03 (patch)
treee7ed15e123fc3c70933b356b8ae55d9998a6fb57 /includes/libs/ReplacementArray.php
parenta9d4d54f74d224cb068510c7715dbfa1ad46123d (diff)
downloadmediawikicore-659df897ea828bba243ca9879875870c35e7bb03.tar.gz
mediawikicore-659df897ea828bba243ca9879875870c35e7bb03.zip
Remove trivial 1-line PHPDocs that just repeat the code
I assume these are all either auto-generated by an IDE or the language-level type declarations have been added later. In any case the comments don't add any new information to what the code already says. This is just extra clutter that makes the code harder to read, I would argue. There are many, many more comments like this. In this patch I intentionally focus on the most trivial 1-line comments. Change-Id: Ia294bf4ce0d8a77036842fe25884bc175c2b0e7d
Diffstat (limited to 'includes/libs/ReplacementArray.php')
-rw-r--r--includes/libs/ReplacementArray.php3
1 files changed, 0 insertions, 3 deletions
diff --git a/includes/libs/ReplacementArray.php b/includes/libs/ReplacementArray.php
index 107ac4ed058b..e16fe324c4d7 100644
--- a/includes/libs/ReplacementArray.php
+++ b/includes/libs/ReplacementArray.php
@@ -73,9 +73,6 @@ class ReplacementArray {
$this->data = $data + $this->data;
}
- /**
- * @param ReplacementArray $other
- */
public function merge( ReplacementArray $other ) {
$this->data = $other->data + $this->data;
}