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
Push — master ( 710d07...9f3829 )
by Jacky
35s
created
system/Modules/Gaia/EventListener/SectorListener.php 2 patches
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -25,8 +25,6 @@
 block discarded – undo
25 25
 	 * @param SectorManager $sectorManager
26 26
 	 * @param SystemManager $systemManager
27 27
 	 * @param EntityManager $entityManager
28
-     * @param RedisManager $redisManager
29
-	 * @param array $scores
30 28
 	 * @param int $minimalScore
31 29
 	 */
32 30
 	public function __construct(
Please login to merge, or discard this patch.
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -4,10 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use Asylamba\Modules\Gaia\Manager\SectorManager;
6 6
 use Asylamba\Modules\Gaia\Manager\SystemManager;
7
-use Asylamba\Modules\Athena\Manager\OrbitalBaseManager;
8
-use Asylamba\Modules\Zeus\Manager\PlayerManager;
9 7
 use Asylamba\Classes\Entity\EntityManager;
10
-
11 8
 use Asylamba\Modules\Gaia\Event\PlaceOwnerChangeEvent;
12 9
 
13 10
 class SectorListener
Please login to merge, or discard this patch.
system/Modules/Gaia/Manager/PlaceManager.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -172,6 +172,9 @@
 block discarded – undo
172 172
         return $this->entityManager->getRepository(Place::class)->turnAsEmptyPlace($place->getId());
173 173
     }
174 174
 	
175
+	/**
176
+	 * @param integer $playerId
177
+	 */
175 178
 	public function turnAsSpawnPlace($placeId, $playerId)
176 179
 	{
177 180
 		$this->eventDispatcher->dispatch(new PlaceOwnerChangeEvent($this->get($placeId)));
Please login to merge, or discard this patch.
system/Modules/Gaia/Manager/SectorManager.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -15,11 +15,9 @@
 block discarded – undo
15 15
 use Asylamba\Classes\Redis\RedisManager;
16 16
 use Asylamba\Classes\Process\LoadBalancer;
17 17
 use Asylamba\Classes\Task\TaskManager;
18
-
19 18
 use Asylamba\Modules\Athena\Manager\OrbitalBaseManager;
20 19
 use Asylamba\Modules\Zeus\Manager\PlayerManager;
21 20
 use Asylamba\Modules\Gaia\Manager\SystemManager;
22
-
23 21
 use Asylamba\Modules\Gaia\Model\Sector;
24 22
 
25 23
 class SectorManager {
Please login to merge, or discard this patch.