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.
Cancelled
Push — master ( e8fec4...eef8d2 )
by Toby
02:15 queued 02:15
created
database/factories/FileFactory.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
3 3
 use BristolSU\Module\UploadFile\Models\File;
4 4
 use Faker\Generator as Faker;
5 5
 
6
-$factory->define(File::class, function (Faker $faker) {
6
+$factory->define(File::class, function(Faker $faker) {
7 7
     return [
8 8
         'title' => $faker->sentence,
9 9
         'description' => $faker->sentence,
@@ -14,10 +14,10 @@  discard block
 block discarded – undo
14 14
         'uploaded_by' => function() {
15 15
             return factory(\BristolSU\ControlDB\Models\User::class)->create()->id();
16 16
         },
17
-        'module_instance_id' => function () {
17
+        'module_instance_id' => function() {
18 18
             return factory(\BristolSU\Support\ModuleInstance\ModuleInstance::class)->create()->id;
19 19
         },
20
-        'activity_instance_id' => function () {
20
+        'activity_instance_id' => function() {
21 21
             return factory(\BristolSU\Support\ActivityInstance\ActivityInstance::class)->create()->id;
22 22
         }
23 23
     ];
Please login to merge, or discard this patch.