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 ( 68c60c...002a74 )
by Piyapan
03:05
created
src/Models/TermRelationship.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,5 +6,5 @@
 block discarded – undo
6 6
 
7 7
 class TermRelationship extends Model
8 8
 {
9
-	protected $fillable = ['model_type', 'model_id', 'term_taxonomy_id', 'term_order'];
9
+  protected $fillable = ['model_type', 'model_id', 'term_taxonomy_id', 'term_order'];
10 10
 }
Please login to merge, or discard this patch.
src/Models/TermTaxonomy.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,10 +9,10 @@
 block discarded – undo
9 9
   protected $fillable = ['term_id', 'taxonomy', 'description', 'parent', 'count'];
10 10
 
11 11
   public function term() {
12
-  	return $this->hasOne('App\Models\Term', 'id', 'term_id');
12
+    return $this->hasOne('App\Models\Term', 'id', 'term_id');
13 13
   }
14 14
 
15 15
   public function childs() {
16
-  	return $this->hasMany('App\Models\TermTaxonomy', 'parent', 'term_id');
16
+    return $this->hasMany('App\Models\TermTaxonomy', 'parent', 'term_id');
17 17
   }
18 18
 }
Please login to merge, or discard this patch.
src/Models/Media.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
 
16 16
   protected $casts = [
17 17
     'custom_properties' => 'array', // Will convarted to (Array)
18
-	];
18
+  ];
19 19
   public function toResponse($request)
20 20
   {
21 21
     $downloadHeaders = [
Please login to merge, or discard this patch.