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 ( 18e39d...348781 )
by Toby
36:48 queued 23:00
created
src/AdditionalProperties/AdditionalPropertySingletonStore.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
      * @return void
28 28
      */
29 29
     public function addProperty(string $model, string $key): void {
30
-        if(!$this->hasProperties($model)) {
30
+        if (!$this->hasProperties($model)) {
31 31
             $this->properties[$model] = [];
32 32
         }
33 33
         $this->properties[$model][] = $key;
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
      */
53 53
     public function getProperties(string $model): array
54 54
     {
55
-        if($this->hasProperties($model)) {
55
+        if ($this->hasProperties($model)) {
56 56
             return $this->properties[$model];
57 57
         }
58 58
         return [];
Please login to merge, or discard this patch.
database/migrations/2019_10_27_175208_create_control_data_user_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('control_data_user', function (Blueprint $table) {
16
+        Schema::create('control_data_user', function(Blueprint $table) {
17 17
             $table->bigIncrements('id');
18 18
             $table->string('first_name')->nullable();
19 19
             $table->string('last_name')->nullable();
Please login to merge, or discard this patch.
database/migrations/2019_10_27_172525_create_control_groups_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('control_groups', function (Blueprint $table) {
16
+        Schema::create('control_groups', function(Blueprint $table) {
17 17
             $table->bigIncrements('id');
18 18
             $table->unsignedInteger('data_provider_id')->unique();
19 19
             $table->timestamps();
Please login to merge, or discard this patch.
database/migrations/2019_10_27_174337_create_control_users_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('control_users', function (Blueprint $table) {
16
+        Schema::create('control_users', function(Blueprint $table) {
17 17
             $table->bigIncrements('id');
18 18
             $table->unsignedBigInteger('data_provider_id')->unique();
19 19
             $table->timestamps();
Please login to merge, or discard this patch.
database/migrations/2019_10_27_174808_create_control_tags_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('control_tags', function (Blueprint $table) {
16
+        Schema::create('control_tags', function(Blueprint $table) {
17 17
             $table->bigIncrements('id');
18 18
             $table->string('name');
19 19
             $table->text('description');
Please login to merge, or discard this patch.
database/migrations/2019_10_27_174808_create_control_taggables_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('control_taggables', function (Blueprint $table) {
16
+        Schema::create('control_taggables', function(Blueprint $table) {
17 17
             $table->bigIncrements('id');
18 18
             $table->unsignedBigInteger('tag_id');
19 19
             $table->unsignedBigInteger('taggable_id');
Please login to merge, or discard this patch.
database/migrations/2019_10_27_174331_create_control_roles_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('control_roles', function (Blueprint $table) {
16
+        Schema::create('control_roles', function(Blueprint $table) {
17 17
             $table->bigIncrements('id');
18 18
             $table->unsignedBigInteger('data_provider_id')->unique();
19 19
             $table->unsignedInteger('position_id');
Please login to merge, or discard this patch.
database/migrations/2019_10_27_174426_create_control_group_user_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('control_group_user', function (Blueprint $table) {
16
+        Schema::create('control_group_user', function(Blueprint $table) {
17 17
             $table->bigIncrements('id');
18 18
             $table->unsignedBigInteger('user_id');
19 19
             $table->unsignedBigInteger('group_id');
Please login to merge, or discard this patch.
database/migrations/2019_10_27_175219_create_control_data_role_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('control_data_role', function (Blueprint $table) {
16
+        Schema::create('control_data_role', function(Blueprint $table) {
17 17
             $table->bigIncrements('id');
18 18
             $table->string('role_name')->nullable();
19 19
             $table->string('email')->nullable();
Please login to merge, or discard this patch.