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 (#160)
by Axel
04:43
created
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.
system/Modules/Athena/Manager/ShipQueueManager.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 
15 15
 use Asylamba\Classes\Entity\EntityManager;
16 16
 use Asylamba\Classes\Scheduler\RealTimeActionScheduler;
17
-
18 17
 use Asylamba\Modules\Athena\Model\ShipQueue;
19 18
 
20 19
 class ShipQueueManager {
Please login to merge, or discard this patch.
system/Modules/Athena/Manager/TransactionManager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
 
34 34
 	/**
35 35
 	 * @param EntityManager $entityManager
36
-	 * @param CommercialTaxManaer $commercialTaxManager
36
+	 * @param CommercialTaxManager $commercialTaxManager
37 37
 	 * @param SessionWrapper $session
38 38
 	 */
39 39
 	public function __construct(EntityManager $entityManager, CommercialTaxManager $commercialTaxManager, SessionWrapper $session) {
Please login to merge, or discard this patch.
system/Modules/Athena/Repository/CommercialShippingRepository.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\Athena\Repository;
4 4
 
5 5
 use Asylamba\Classes\Entity\AbstractRepository;
6
-
7 6
 use Asylamba\Modules\Athena\Model\CommercialShipping;
8 7
 
9 8
 class CommercialShippingRepository extends AbstractRepository
Please login to merge, or discard this patch.
system/Modules/Athena/Repository/TransactionRepository.php 2 patches
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -56,8 +56,6 @@
 block discarded – undo
56 56
     
57 57
     /**
58 58
      * @param int $type
59
-     * @param int $statement
60
-     * @param int $limit
61 59
      * @return array
62 60
      */
63 61
     public function getLastCompletedTransaction($type)
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\Athena\Repository;
4 4
 
5 5
 use Asylamba\Classes\Entity\AbstractRepository;
6
-
7 6
 use Asylamba\Modules\Athena\Model\Transaction;
8 7
 
9 8
 class TransactionRepository extends AbstractRepository
Please login to merge, or discard this patch.
system/Modules/Demeter/Manager/ColorManager.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -489,6 +489,10 @@
 block discarded – undo
489 489
 		$this->entityManager->flush($faction);
490 490
 	}
491 491
 
492
+	/**
493
+	 * @param boolean $hadVoted
494
+	 * @param integer $convPlayerID
495
+	 */
492 496
 	public function uMandate(Color $color, $governmentMembers, $newChief, $idOldChief, $hadVoted, $conv, $convPlayerID, $candidate) {
493 497
 		# préparation de la conversation
494 498
 		$conv->messages++;
Please login to merge, or discard this patch.
system/Modules/Demeter/Manager/Election/CandidateManager.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -12,10 +12,8 @@
 block discarded – undo
12 12
 namespace Asylamba\Modules\Demeter\Manager\Election;
13 13
 
14 14
 use Asylamba\Classes\Entity\EntityManager;
15
-
16 15
 use Asylamba\Modules\Demeter\Model\Election\Election;
17 16
 use Asylamba\Modules\Demeter\Model\Election\Candidate;
18
-
19 17
 use Asylamba\Modules\Zeus\Model\Player;
20 18
 
21 19
 class CandidateManager {
Please login to merge, or discard this patch.