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 (#123)
by
unknown
12:02
created
system/Classes/Task/TaskManager.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Asylamba\Classes\Task;
4 4
 
5 5
 use Asylamba\Classes\DependencyInjection\Container;
6
-
7 6
 use Asylamba\Classes\Process\Process;
8 7
 
9 8
 class TaskManager
Please login to merge, or discard this patch.
system/Classes/Worker/API.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -26,6 +26,9 @@
 block discarded – undo
26 26
 		$this->security = $security;
27 27
 	}
28 28
 
29
+	/**
30
+	 * @param string $api
31
+	 */
29 32
 	private function query($api, $args) {
30 33
 		$targ = '';
31 34
 		$ch  = curl_init();
Please login to merge, or discard this patch.
system/Classes/Worker/Manager.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -25,6 +25,9 @@
 block discarded – undo
25 25
         $this->newSession();
26 26
     }
27 27
 
28
+    /**
29
+     * @param boolean $uMode
30
+     */
28 31
     public function newSession($uMode = ASM_UMODE) {
29 32
         $this->statSessions++;
30 33
         $this->statChangeSessions++;
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\Classes\Worker;
4 4
 
5 5
 use Asylamba\Classes\Library\Bug;
6
-
7 6
 use Asylamba\Classes\Database\Database;
8 7
 
9 8
 abstract class Manager {
Please login to merge, or discard this patch.
system/Modules/Ares/Manager/ReportManager.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@
 block discarded – undo
13 13
 namespace Asylamba\Modules\Ares\Manager;
14 14
 
15 15
 use Asylamba\Classes\Entity\EntityManager;
16
-
17 16
 use Asylamba\Modules\Ares\Model\Report;
18 17
 
19 18
 class ReportManager {
Please login to merge, or discard this patch.
system/Modules/Ares/Manager/SquadronManager.php 1 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\Ares\Manager;
4 4
 
5 5
 use Asylamba\Classes\Entity\EntityManager;
6
-
7 6
 use Asylamba\Modules\Ares\Model\Commander;
8 7
 use Asylamba\Modules\Ares\Model\Squadron;
9 8
 
Please login to merge, or discard this patch.
system/Modules/Ares/Model/Commander.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -795,6 +795,9 @@
 block discarded – undo
795 795
 		}
796 796
 	}
797 797
 	
798
+	/**
799
+	 * @param integer $i
800
+	 */
798 801
 	public function getSquadron($i)	
799 802
     {
800 803
 		$this->setArmy();
Please login to merge, or discard this patch.
system/Modules/Ares/Repository/LiveReportRepository.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -9,6 +9,9 @@
 block discarded – undo
9 9
 
10 10
 class LiveReportRepository extends AbstractRepository
11 11
 {
12
+	/**
13
+	 * @param string $clause
14
+	 */
12 15
 	public function select($clause, $params = [])
13 16
 	{
14 17
 		$statement = $this->connection->prepare(
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\Ares\Repository;
4 4
 
5 5
 use Asylamba\Classes\Entity\AbstractRepository;
6
-
7 6
 use Asylamba\Modules\Ares\Model\Report;
8 7
 
9 8
 class LiveReportRepository extends AbstractRepository
Please login to merge, or discard this patch.
system/Modules/Ares/Repository/ReportRepository.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -82,6 +82,9 @@
 block discarded – undo
82 82
 		return $this->formatResult($query);
83 83
 	}
84 84
 	
85
+	/**
86
+	 * @param \PDOStatement $statement
87
+	 */
85 88
 	public function formatResult($statement)
86 89
 	{
87 90
 		$currentId = null;
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\Ares\Repository;
4 4
 
5 5
 use Asylamba\Classes\Entity\AbstractRepository;
6
-
7 6
 use Asylamba\Modules\Ares\Model\Report;
8 7
 
9 8
 class ReportRepository extends AbstractRepository {
Please login to merge, or discard this patch.
system/Modules/Athena/Manager/BuildingQueueManager.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\Modules\Athena\Model\BuildingQueue;
15 15
 use Asylamba\Classes\Entity\EntityManager;
16
-
17 16
 use Asylamba\Classes\Scheduler\RealTimeActionScheduler;
18 17
 
19 18
 class BuildingQueueManager {
Please login to merge, or discard this patch.