tests: remove date from @author docs statements
authorAntoine Musso <hashar@free.fr>
Thu, 3 Oct 2013 08:35:01 +0000 (10:35 +0200)
committerAntoine Musso <hashar@free.fr>
Thu, 3 Oct 2013 08:48:12 +0000 (10:48 +0200)
phpunit interprets '@author' documentation statements to generate group.
Appending the year to the author name created duplicates entry:

 $ php phpunit.php --list-groups|grep Antoine
 Antoine Musso
 Antoine Musso, 2012
 $

Removing the date fix the duplication. I have also inserted
corresponding '@copyright' statements.

Change-Id: I65b19adb59c4894314ce68a0c815c5d3e4c30df0

tests/phpunit/structure/ResourcesTest.php

index 3af805a..fe823fa 100644 (file)
@@ -3,10 +3,15 @@
  * Sanity checks for making sure registered resources are sane.
  *
  * @file
- * @author Niklas Laxström, 2012
- * @author Antoine Musso, 2012
- * @author Santhosh Thottingal, 2012
- * @author Timo Tijhof, 2012
+ * @author Antoine Musso
+ * @author Niklas Laxström
+ * @author Santhosh Thottingal
+ * @author Timo Tijhof
+ * @copyright © 2012, Antoine Musso
+ * @copyright © 2012, Niklas Laxström
+ * @copyright © 2012, Santhosh Thottingal
+ * @copyright © 2012, Timo Tijhof
+ *
  * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
  */
 class ResourcesTest extends MediaWikiTestCase {