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
Pull Request — master (#100)
by Axel
16:33
created
system/Modules/Promethee/Model/Technology.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -11,8 +11,6 @@
 block discarded – undo
11 11
 */
12 12
 namespace Asylamba\Modules\Promethee\Model;
13 13
 
14
-use Asylamba\Modules\Promethee\Resource\TechnologyResource;
15
-
16 14
 class Technology {
17 15
 	// ATTRIBUTES
18 16
 	public $rPlayer;
Please login to merge, or discard this patch.
system/Modules/Zeus/Helper/TutorialHelper.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 namespace Asylamba\Modules\Zeus\Helper;
13 13
 
14 14
 use Asylamba\Classes\Library\Session\SessionWrapper;
15
-
16 15
 use Asylamba\Classes\Entity\EntityManager;
17 16
 use Asylamba\Modules\Zeus\Manager\PlayerManager;
18 17
 use Asylamba\Modules\Athena\Manager\OrbitalBaseManager;
Please login to merge, or discard this patch.
system/Modules/Zeus/Manager/PlayerBonusManager.php 2 patches
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -266,6 +266,10 @@
 block discarded – undo
266 266
 		}
267 267
 	}
268 268
 
269
+	/**
270
+	 * @param integer $techno
271
+	 * @param string $level
272
+	 */
269 273
 	public function updateTechnoBonus(PlayerBonus $playerBonus, $techno, $level) {
270 274
 		switch ($techno) {
271 275
 			case Technology::GENERATOR_SPEED: $bonusId = PlayerBonus::GENERATOR_SPEED; break;
Please login to merge, or discard this patch.
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -3,21 +3,17 @@
 block discarded – undo
3 3
 namespace Asylamba\Modules\Zeus\Manager;
4 4
 
5 5
 use Asylamba\Classes\Exception\ErrorException;
6
-
7 6
 use Asylamba\Classes\Container\StackList;
8
-
9 7
 use Asylamba\Modules\Zeus\Model\Player;
10 8
 use Asylamba\Modules\Zeus\Model\PlayerBonus;
11 9
 use Asylamba\Modules\Promethee\Model\Technology;
12 10
 use Asylamba\Modules\Demeter\Model\Law\Law;
13 11
 use Asylamba\Modules\Demeter\Resource\LawResources;
14
-
15 12
 use Asylamba\Modules\Demeter\Manager\Law\LawManager;
16 13
 use Asylamba\Modules\Demeter\Manager\ColorManager;
17 14
 use Asylamba\Modules\Promethee\Manager\TechnologyManager;
18 15
 use Asylamba\Modules\Promethee\Helper\TechnologyHelper;
19 16
 use Asylamba\Classes\Library\Session\SessionWrapper;
20
-
21 17
 use Asylamba\Modules\Demeter\Resource\ColorResource;
22 18
 
23 19
 class PlayerBonusManager
Please login to merge, or discard this patch.
system/Modules/Zeus/Manager/PlayerManager.php 2 patches
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -348,6 +348,9 @@  discard block
 block discarded – undo
348 348
 		$this->entityManager->flush($player);
349 349
 	}
350 350
 
351
+	/**
352
+	 * @param Player $playerId
353
+	 */
351 354
 	public function kill($playerId) {
352 355
 		$player = $this->get($playerId);
353 356
 
@@ -533,6 +536,10 @@  discard block
 block discarded – undo
533 536
 		$this->entityManager->flush(Color::class);
534 537
 	}
535 538
 
539
+	/**
540
+	 * @param PlayerBonus $playerBonus
541
+	 * @param \Asylamba\Classes\Worker\ManagerSession $rsmSession
542
+	 */
536 543
 	public function uCredit(Player $player, $playerBases, $playerBonus, $commanders, $rsmSession, $factions, $transactions) {
537 544
 		
538 545
 		$popTax = 0; $nationTax = 0;
Please login to merge, or discard this patch.
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@  discard block
 block discarded – undo
15 15
 use Asylamba\Classes\Library\Utils;
16 16
 use Asylamba\Classes\Entity\EntityManager;
17 17
 use Asylamba\Classes\Library\Session\SessionWrapper;
18
-
19 18
 use Asylamba\Modules\Zeus\Model\Player;
20 19
 use Asylamba\Modules\Zeus\Model\PlayerBonus;
21 20
 use Asylamba\Modules\Promethee\Model\Technology;
@@ -23,7 +22,6 @@  discard block
 block discarded – undo
23 22
 use Asylamba\Modules\Hermes\Model\Notification;
24 23
 use Asylamba\Modules\Ares\Model\Commander;
25 24
 use Asylamba\Modules\Athena\Model\Transaction;
26
-
27 25
 use Asylamba\Modules\Demeter\Manager\ColorManager;
28 26
 use Asylamba\Modules\Ares\Manager\CommanderManager;
29 27
 use Asylamba\Modules\Gaia\Manager\GalaxyColorManager;
@@ -36,10 +34,8 @@  discard block
 block discarded – undo
36 34
 use Asylamba\Modules\Athena\Manager\CommercialRouteManager;
37 35
 use Asylamba\Modules\Promethee\Manager\TechnologyManager;
38 36
 use Asylamba\Modules\Athena\Resource\ShipResource;
39
-
40 37
 use Asylamba\Classes\Library\Game;
41 38
 use Asylamba\Classes\Container\ArrayList;
42
-
43 39
 use Asylamba\Classes\Exception\ErrorException;
44 40
 
45 41
 class PlayerManager {
Please login to merge, or discard this patch.
system/Modules/Zeus/Repository/PlayerRepository.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -500,7 +500,7 @@
 block discarded – undo
500 500
 	}
501 501
 	
502 502
 	/**
503
-	 * @param Player $playerId
503
+	 * @param Player $player
504 504
 	 * @param int $credits
505 505
 	 * @param string $operator
506 506
 	 */
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Asylamba\Modules\Zeus\Repository;
4 4
 
5 5
 use Asylamba\Classes\Entity\AbstractRepository;
6
-
7 6
 use Asylamba\Modules\Zeus\Model\Player;
8 7
 
9 8
 class PlayerRepository extends AbstractRepository {
Please login to merge, or discard this patch.
system/Classes/Configuration/Configuration.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
     
15 15
     /**
16 16
      * @param FileLocatorInterface $locator
17
-     * @param string $format
18 17
      */
19 18
     public function __construct(FileLocatorInterface $locator) {
20 19
         $this->locator = $locator;
Please login to merge, or discard this patch.