From 659df897ea828bba243ca9879875870c35e7bb03 Mon Sep 17 00:00:00 2001 From: thiemowmde Date: Thu, 16 Jan 2025 14:24:44 +0100 Subject: 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 --- includes/libs/ReplacementArray.php | 3 --- 1 file changed, 3 deletions(-) (limited to 'includes/libs/ReplacementArray.php') 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; } -- cgit v1.2.3