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 ( 6844c1...5a9a8d )
by Miša
08:04
created
src/Drivers/JSONTranslationDriver.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -202,6 +202,9 @@
 block discarded – undo
202 202
         return "meta" . DIRECTORY_SEPARATOR . "{$language}.json";
203 203
     }
204 204
 
205
+    /**
206
+     * @param string $language
207
+     */
205 208
     protected function getLanguageModelMap($language)
206 209
     {
207 210
         if (!$this->disk->has($this->mapName($language))) {
Please login to merge, or discard this patch.
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,13 +2,13 @@
 block discarded – undo
2 2
 
3 3
 namespace WeAreNeopix\LaravelModelTranslation\Drivers;
4 4
 
5
-use Illuminate\Support\Str;
6
-use Illuminate\Support\Collection;
7 5
 use Illuminate\Database\Eloquent\Model;
8 6
 use Illuminate\Filesystem\FilesystemAdapter as StorageDisk;
7
+use Illuminate\Support\Collection;
8
+use Illuminate\Support\Str;
9 9
 use WeAreNeopix\LaravelModelTranslation\Contracts\TranslationDriver;
10
-use WeAreNeopix\LaravelModelTranslation\Jobs\SyncModelLanguageMapping;
11 10
 use WeAreNeopix\LaravelModelTranslation\Jobs\RemoveModelFromLanguageModelMap;
11
+use WeAreNeopix\LaravelModelTranslation\Jobs\SyncModelLanguageMapping;
12 12
 
13 13
 class JSONTranslationDriver implements TranslationDriver
14 14
 {
Please login to merge, or discard this patch.
src/Jobs/RemoveModelFromLanguageModelMap.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -3,11 +3,11 @@
 block discarded – undo
3 3
 namespace WeAreNeopix\LaravelModelTranslation\Jobs;
4 4
 
5 5
 use Illuminate\Bus\Queueable;
6
-use Illuminate\Database\Eloquent\Model;
7
-use Illuminate\Queue\SerializesModels;
8
-use Illuminate\Queue\InteractsWithQueue;
9 6
 use Illuminate\Contracts\Queue\ShouldQueue;
7
+use Illuminate\Database\Eloquent\Model;
10 8
 use Illuminate\Foundation\Bus\Dispatchable;
9
+use Illuminate\Queue\InteractsWithQueue;
10
+use Illuminate\Queue\SerializesModels;
11 11
 
12 12
 class RemoveModelFromLanguageModelMap implements ShouldQueue
13 13
 {
Please login to merge, or discard this patch.
src/Jobs/SyncModelLanguageMapping.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -3,11 +3,11 @@
 block discarded – undo
3 3
 namespace WeAreNeopix\LaravelModelTranslation\Jobs;
4 4
 
5 5
 use Illuminate\Bus\Queueable;
6
-use Illuminate\Database\Eloquent\Model;
7
-use Illuminate\Queue\SerializesModels;
8
-use Illuminate\Queue\InteractsWithQueue;
9 6
 use Illuminate\Contracts\Queue\ShouldQueue;
7
+use Illuminate\Database\Eloquent\Model;
10 8
 use Illuminate\Foundation\Bus\Dispatchable;
9
+use Illuminate\Queue\InteractsWithQueue;
10
+use Illuminate\Queue\SerializesModels;
11 11
 
12 12
 class SyncModelLanguageMapping implements ShouldQueue
13 13
 {
Please login to merge, or discard this patch.