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.
Passed
Push — master ( 27ed08...0d3306 )
by Toby
52:35 queued 42:01
created
src/Cache/Role.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
      */
31 31
     public function getById(int $id): RoleModel
32 32
     {
33
-        return $this->cache->remember(static::class . '@getById:' . $id, 5000, function() use ($id) {
33
+        return $this->cache->remember(static::class.'@getById:'.$id, 5000, function() use ($id) {
34 34
             return $this->roleRepository->getById($id);
35 35
         });
36 36
     }
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
      */
49 49
     public function getByDataProviderId(int $dataProviderId): RoleModel
50 50
     {
51
-        return $this->cache->remember(static::class . '@getByDataProviderId:' . $dataProviderId, 5000, function() use ($dataProviderId) {
51
+        return $this->cache->remember(static::class.'@getByDataProviderId:'.$dataProviderId, 5000, function() use ($dataProviderId) {
52 52
             return $this->roleRepository->getByDataProviderId($dataProviderId);
53 53
         });
54 54
     }
Please login to merge, or discard this patch.