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/Gaia/Resource/SquadronResource.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -5,6 +5,11 @@
 block discarded – undo
5 5
 use Asylamba\Classes\Library\Utils;
6 6
 
7 7
 class SquadronResource {
8
+
9
+	/**
10
+	 * @param double $level
11
+	 * @param integer $aleaNbr
12
+	 */
8 13
 	public static function get($level, $aleaNbr) {
9 14
 		while ($aleaNbr >= self::size()) {
10 15
 			$aleaNbr -=  self::size();
Please login to merge, or discard this patch.
system/Modules/Hermes/Manager/ConversationManager.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 use Asylamba\Classes\Library\Utils;
7 7
 use Asylamba\Classes\Database\Database;
8 8
 use Asylamba\Classes\Worker\ASM;
9
-
10 9
 use Asylamba\Modules\Hermes\Model\Conversation;
11 10
 
12 11
 class ConversationManager extends Manager {
Please login to merge, or discard this patch.
system/Modules/Hermes/Manager/ConversationMessageManager.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Asylamba\Classes\Worker\Manager;
6 6
 use Asylamba\Classes\Library\Utils;
7 7
 use Asylamba\Classes\Database\Database;
8
-
9 8
 use Asylamba\Modules\Hermes\Model\ConversationMessage;
10 9
 
11 10
 class ConversationMessageManager extends Manager {
Please login to merge, or discard this patch.
system/Modules/Hermes/Manager/RoadMapManager.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\Hermes\Model\RoadMap;
19 18
 
20 19
 class RoadMapManager extends Manager {
Please login to merge, or discard this patch.
system/Modules/Promethee/Model/Research.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -55,6 +55,9 @@
 block discarded – undo
55 55
 		return $this->rPlayer;
56 56
 	}
57 57
 
58
+	/**
59
+	 * @param integer $id
60
+	 */
58 61
 	public function getLevel($id) {
59 62
 		if (ResearchResource::isAResearch($id)) {
60 63
 			switch ($id) {
Please login to merge, or discard this patch.
system/Modules/Promethee/Model/Technology.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\Promethee\Model;
13 13
 
14 14
 use Asylamba\Classes\Database\Database;
15
-
16 15
 use Asylamba\Modules\Promethee\Resource\TechnologyResource;
17 16
 use Asylamba\Modules\Zeus\Model\PlayerBonus;
18 17
 
Please login to merge, or discard this patch.
system/Modules/Promethee/Resource/ResearchResource.php 1 patch
Doc Comments   +11 added lines patch added patch discarded remove patch
@@ -17,6 +17,10 @@  discard block
 block discarded – undo
17 17
 		return (in_array($research, self::$availableResearch)) ? TRUE : FALSE;
18 18
 	}
19 19
 
20
+	/**
21
+	 * @param integer $research
22
+	 * @param string $info
23
+	 */
20 24
 	public static function getInfo($research, $info, $level = 0, $sup = 'delfault') {
21 25
 		if (self::isAResearch($research)) {
22 26
 			if ($info == 'name' || $info == 'codeName') {
@@ -37,6 +41,10 @@  discard block
 block discarded – undo
37 41
 		return FALSE;
38 42
 	}
39 43
 
44
+	/**
45
+	 * @param integer $firstLevel
46
+	 * @param integer $secondLevel
47
+	 */
40 48
 	public static function isResearchPermit($firstLevel, $secondLevel, $thirdLevel = -1) {
41 49
 		// compare the levels of technos and say if you can research such techno
42 50
 		if ($thirdLevel == -1) {
@@ -56,6 +64,9 @@  discard block
 block discarded – undo
56 64
 		}
57 65
 	}
58 66
 
67
+	/**
68
+	 * @param integer $level
69
+	 */
59 70
 	private static function researchPrice($research, $level) {
60 71
 		switch ($research) {
61 72
 			case 0 :
Please login to merge, or discard this patch.
system/Modules/Promethee/Resource/TechnologyResource.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -29,6 +29,9 @@
 block discarded – undo
29 29
 		return (in_array($techno, self::$technologiesNotDisplayed)) ? TRUE : FALSE;
30 30
 	}
31 31
 
32
+	/**
33
+	 * @param string $info
34
+	 */
32 35
 	public static function getInfo($techno, $info, $level = 0) {
33 36
 		if (self::isATechnology($techno)) {
34 37
 			if (self::isAnUnblockingTechnology($techno)) {
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\Promethee\Resource;
4 4
 
5 5
 use Asylamba\Classes\Worker\CTR;
6
-
7 6
 use Asylamba\Modules\Athena\Model\OrbitalBase;
8 7
 use Asylamba\Modules\Athena\Resource\OrbitalBaseResource;
9 8
 use Asylamba\Modules\Promethee\Resource\ResearchResource;
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
@@ -13,7 +13,6 @@
 block discarded – undo
13 13
 
14 14
 use Asylamba\Classes\Worker\CTR;
15 15
 use Asylamba\Classes\Worker\ASM;
16
-
17 16
 use Asylamba\Modules\Promethee\Model\Technology;
18 17
 
19 18
 class TutorialHelper {
Please login to merge, or discard this patch.