GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Branch master (fd24cf)
by Jacky
12:49
created
system/Modules/Athena/Manager/CommercialRouteManager.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -195,6 +195,9 @@
 block discarded – undo
195 195
 		return TRUE;
196 196
 	}
197 197
 
198
+	/**
199
+	 * @param Color $color1
200
+	 */
198 201
 	public static function freezeRoute($color1, $color2) {
199 202
 		$freeze = TRUE;
200 203
 		if (!($color1->colorLink[$color2->id] == Color::ENEMY || $color2->colorLink[$color1->id] == Color::ENEMY)) {
Please login to merge, or discard this patch.
system/Modules/Athena/Manager/CommercialTaxManager.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 use Asylamba\Classes\Worker\Manager;
15 15
 use Asylamba\Classes\Library\Utils;
16 16
 use Asylamba\Classes\Database\Database;
17
-
18 17
 use Asylamba\Modules\Athena\Model\CommercialTax;
19 18
 
20 19
 class CommercialTaxManager extends Manager {
Please login to merge, or discard this patch.
system/Modules/Athena/Manager/OrbitalBaseManager.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -436,6 +436,9 @@
 block discarded – undo
436 436
 		}
437 437
 	}
438 438
 
439
+	/**
440
+	 * @param integer $id
441
+	 */
439 442
 	public function changeOwnerById($id, $base, $newOwner, $routeSession, $recyclingSession, $commanderSession) {
440 443
 		if ($base->getId() != 0) {
441 444
 			# changement de possesseur des offres du marché
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,6 @@
 block discarded – undo
17 17
 use Asylamba\Classes\Library\Utils;
18 18
 use Asylamba\Classes\Library\Game;
19 19
 use Asylamba\Classes\Database\Database;
20
-
21 20
 use Asylamba\Modules\Gaia\Manager\GalaxyColorManager;
22 21
 use Asylamba\Modules\Athena\Model\Transaction;
23 22
 use Asylamba\Modules\Ares\Model\Commander;
Please login to merge, or discard this patch.
system/Modules/Athena/Manager/RecyclingLogManager.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 use Asylamba\Classes\Worker\Manager;
15 15
 use Asylamba\Classes\Library\Utils;
16 16
 use Asylamba\Classes\Database\Database;
17
-
18 17
 use Asylamba\Modules\Athena\Model\RecyclingLog;
19 18
 
20 19
 class RecyclingLogManager extends Manager {
Please login to merge, or discard this patch.
system/Modules/Athena/Manager/RecyclingMissionManager.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 use Asylamba\Classes\Worker\Manager;
15 15
 use Asylamba\Classes\Library\Utils;
16 16
 use Asylamba\Classes\Database\Database;
17
-
18 17
 use Asylamba\Modules\Athena\Model\RecyclingMission;
19 18
 
20 19
 class RecyclingMissionManager extends Manager {
Please login to merge, or discard this patch.
system/Modules/Athena/Manager/ShipQueueManager.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@
 block discarded – undo
15 15
 use Asylamba\Classes\Worker\Manager;
16 16
 use Asylamba\Classes\Library\Utils;
17 17
 use Asylamba\Classes\Database\Database;
18
-
19 18
 use Asylamba\Modules\Athena\Model\ShipQueue;
20 19
 
21 20
 class ShipQueueManager extends Manager {
Please login to merge, or discard this patch.
system/Modules/Athena/Manager/TransactionManager.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@
 block discarded – undo
15 15
 use Asylamba\Classes\Worker\Manager;
16 16
 use Asylamba\Classes\Library\Utils;
17 17
 use Asylamba\Classes\Database\Database;
18
-
19 18
 use Asylamba\Modules\Athena\Model\Transaction;
20 19
 
21 20
 class TransactionManager extends Manager {
Please login to merge, or discard this patch.
system/Modules/Athena/Model/OrbitalBase.php 2 patches
Doc Comments   +22 added lines patch added patch discarded remove patch
@@ -108,6 +108,10 @@  discard block
 block discarded – undo
108 108
 	public function getId() { return $this->rPlace; }
109 109
 	public function getRPlace() { return $this->rPlace; }
110 110
 	public function getRPlayer() { return $this->rPlayer; }
111
+
112
+	/**
113
+	 * @return string
114
+	 */
111 115
 	public function getName() { return $this->name; }
112 116
 	public function getLevelGenerator() { return $this->levelGenerator; }
113 117
 	public function getLevelRefinery() { return $this->levelRefinery; }
@@ -205,9 +209,24 @@  discard block
 block discarded – undo
205 209
 	public function setPlanetResources($var) { $this->planetResources = $var; }
206 210
 	public function setPlanetHistory($var) { $this->planetHistory = $var; }
207 211
 
212
+	/**
213
+	 * @param double $var
214
+	 */
208 215
 	public function setRemainingTimeGenerator($var) { $this->remainingTimeGenerator = $var; }
216
+
217
+	/**
218
+	 * @param double $var
219
+	 */
209 220
 	public function setRemainingTimeDock1($var) { $this->remainingTimeDock1 = $var; }
221
+
222
+	/**
223
+	 * @param double $var
224
+	 */
210 225
 	public function setRemainingTimeDock2($var) { $this->remainingTimeDock2 = $var; }
226
+
227
+	/**
228
+	 * @param double $var
229
+	 */
211 230
 	public function setRemainingTimeDock3($var) { $this->remainingTimeDock3 = $var; }
212 231
 	public function setRoutesNumber($var) { $this->routesNumber = $var; }
213 232
 	
@@ -768,6 +787,9 @@  discard block
 block discarded – undo
768 787
 		}
769 788
 	}
770 789
 
790
+	/**
791
+	 * @param integer $shipId
792
+	 */
771 793
 	public function addShipToDock($shipId, $quantity) {
772 794
 		if (OrbitalBaseResource::isAShipFromDock1($shipId) OR OrbitalBaseResource::isAShipFromDock2($shipId)) {
773 795
 			self::setShipStorage($shipId, self::getShipStorage($shipId) + $quantity);
Please login to merge, or discard this patch.
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -14,16 +14,13 @@
 block discarded – undo
14 14
 use Asylamba\Classes\Worker\CTR;
15 15
 use Asylamba\Classes\Worker\CTC;
16 16
 use Asylamba\Classes\Worker\ASM;
17
-
18 17
 use Asylamba\Classes\Library\Utils;
19 18
 use Asylamba\Classes\Library\Game;
20 19
 use Asylamba\Classes\Library\Format;
21
-
22 20
 use Asylamba\Modules\Zeus\Model\PlayerBonus;
23 21
 use Asylamba\Modules\Hermes\Model\Notification;
24 22
 use Asylamba\Modules\Promethee\Model\Technology;
25 23
 use Asylamba\Modules\Gaia\Model\Place;
26
-
27 24
 use Asylamba\Modules\Athena\Resource\ShipResource;
28 25
 use Asylamba\Modules\Promethee\Resource\TechnologyResource;
29 26
 use Asylamba\Modules\Athena\Resource\OrbitalBaseResource;
Please login to merge, or discard this patch.
system/Modules/Athena/Model/Transaction.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@
 block discarded – undo
15 15
 use Asylamba\Classes\Worker\ASM;
16 16
 use Asylamba\Classes\Library\Chronos;
17 17
 use Asylamba\Classes\Library\Format;
18
-
19 18
 use Asylamba\Modules\Demeter\Resource\ColorResource;
20 19
 use Asylamba\Modules\Ares\Resource\CommanderResources;
21 20
 use Asylamba\Modules\Athena\Resource\ShipResource;
Please login to merge, or discard this patch.