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 ( c69607...e56aa8 )
by Steve
09:12 queued 08:00
created
src/API/JSONSchema/JSONSchemaAppliance.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace Solvire\API\JSONSchema;
3 3
 
4
-use Solvire\Utilities\OptionsChecker as Ch;
5 4
 use Solvire\Application\Environment as Ev;
6 5
 
7 6
 /**
Please login to merge, or discard this patch.
src/API/JSONSchema/Resource.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
     /**
34 34
      *
35 35
      * @param string $name            
36
-     * @param BaseSerializer $serializers            
36
+     * @param BaseSerializer $serializer            
37 37
      */
38 38
     public function __construct($name = '', $serializer = null)
39 39
     {
Please login to merge, or discard this patch.
src/API/Renderers/BaseRenderer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
     /**
36 36
      *
37 37
      * @param HttpRequest $request            
38
-     * @return \Solvire\API\Representatives\RepresentationControllers
38
+     * @return BaseRenderer
39 39
      */
40 40
     public function setRequest($request)
41 41
     {
Please login to merge, or discard this patch.
src/API/Representatives/BaseRepresentationController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
     /**
71 71
      *
72 72
      * @param mixed $request            
73
-     * @return \Solvire\API\Representatives\RepresentationControllers
73
+     * @return BaseRepresentationController
74 74
      */
75 75
     public function setRequest($request)
76 76
     {
Please login to merge, or discard this patch.
src/API/Serializers/LaravelModelSerializer.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,6 @@  discard block
 block discarded – undo
71 71
 
72 72
     /**
73 73
      *
74
-     * @param array $data            
75 74
      */
76 75
     public function loadData($model)
77 76
     {
@@ -130,6 +129,9 @@  discard block
 block discarded – undo
130 129
         return $this;
131 130
     }
132 131
 
132
+    /**
133
+     * @param SplitPointField $dataField
134
+     */
133 135
     public function loadSplitPoint($dataField, $model)
134 136
     {
135 137
         $lat = $dataField->getLatitudeColumn();
Please login to merge, or discard this patch.