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 ( 39c4f8...de6395 )
by Dirk
05:18 queued 02:45
created
src/Pinterest/Models/Model.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -51,8 +51,7 @@  discard block
 block discarded – undo
51 51
         // Fill the model
52 52
         if( is_array($modeldata) ){
53 53
             $this->fill($modeldata);
54
-        }
55
-        else if( $modeldata instanceof \DirkGroenen\Pinterest\Transport\Response ){
54
+        } else if( $modeldata instanceof \DirkGroenen\Pinterest\Transport\Response ){
56 55
             $this->fill($modeldata->data);    
57 56
         }
58 57
     }
@@ -82,8 +81,7 @@  discard block
 block discarded – undo
82 81
     {
83 82
         if($this->isFillable($key)){
84 83
             $this->attributes[$key] = $value;
85
-        }
86
-        else{
84
+        } else{
87 85
             throw new PinterestException( sprintf("%s is not a fillable attribute.", $key) );
88 86
         }
89 87
     }
Please login to merge, or discard this patch.