diff --git a/LICENSE b/LICENSE
index 5a5d7666b7bf2321ae2d868222227285ecf53bdd..9e00391aabfdfd6ecfae0b19b1219b9b3e5e2574 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
 MIT License
 
-Copyright (c) 2019 Irstea
+Copyright (c) 2019-2020 Irstea
 
 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
 
diff --git a/src/MyClass.php b/src/MyClass.php
index 496555e40b080b89bc70ceebc4d3598e46273a1e..715c5c4443702794bbfc0b99d07c78efaa39cc41 100644
--- a/src/MyClass.php
+++ b/src/MyClass.php
@@ -1,10 +1,11 @@
 <?php declare(strict_types=1);
 /*
  * This file is part of "irstea/php-skeleton".
- * (c) 2019 Irstea <dsi.poleis@irstea.fr>
+ * (c) 2019-2020 Irstea <dsi.poleis@irstea.fr>
  *
  * For the full copyright and license information, please view the LICENSE
  * file that was distributed with this source code.
+ *
  */
 
 namespace Irstea\MyProject;
@@ -14,9 +15,6 @@ namespace Irstea\MyProject;
  */
 class MyClass
 {
-    /**
-     * @return int
-     */
     public function getResponse(): int
     {
         return 42;
diff --git a/tests/MyClassTest.php b/tests/MyClassTest.php
index 6458d60c3d98adb0cb578f7ba5a653144f5a5a0c..838bc854398b26761c280317554fc5b4675809e4 100644
--- a/tests/MyClassTest.php
+++ b/tests/MyClassTest.php
@@ -1,10 +1,11 @@
 <?php declare(strict_types=1);
 /*
  * This file is part of "irstea/php-skeleton".
- * (c) 2019 Irstea <dsi.poleis@irstea.fr>
+ * (c) 2019-2020 Irstea <dsi.poleis@irstea.fr>
  *
  * For the full copyright and license information, please view the LICENSE
  * file that was distributed with this source code.
+ *
  */
 
 namespace Irstea\MyProject\Tests;