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 ( d22bab...41c46a )
by Nikhil
15:46 queued 08:03
created
app/Purchase.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@
 block discarded – undo
128 128
     /**
129 129
      * Verify the status.
130 130
      *
131
-     * @param $status
131
+     * @param string $status
132 132
      *
133 133
      * @return bool
134 134
      */
Please login to merge, or discard this patch.
app/Transformers/GuitarTransformer.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
      *
47 47
      * @param Guitar $guitar
48 48
      *
49
-     * @return \League\Fractal\Resource\Collection
49
+     * @return \League\Fractal\Resource\Item
50 50
      */
51 51
     public function includeRack(Guitar $guitar)
52 52
     {
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
      *
59 59
      * @param Guitar $guitar
60 60
      *
61
-     * @return \League\Fractal\Resource\Collection
61
+     * @return \League\Fractal\Resource\Item
62 62
      */
63 63
     public function includePurchase(Guitar $guitar)
64 64
     {
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
      *
71 71
      * @param Guitar $guitar
72 72
      *
73
-     * @return \League\Fractal\Resource\Collection
73
+     * @return \League\Fractal\Resource\Item
74 74
      */
75 75
     public function includeSale(Guitar $guitar)
76 76
     {
Please login to merge, or discard this patch.
app/Transformers/RackTransformer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
      *
42 42
      * @param Rack $rack
43 43
      *
44
-     * @return \League\Fractal\Resource\Collection
44
+     * @return \League\Fractal\Resource\Item
45 45
      */
46 46
     public function includeWarehouse(Rack $rack)
47 47
     {
Please login to merge, or discard this patch.
app/Transformers/PurchaseTransformer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
      *
42 42
      * @param Rack $rack
43 43
      *
44
-     * @return \League\Fractal\Resource\Collection
44
+     * @return \League\Fractal\Resource\Item
45 45
      */
46 46
     public function includeWarehouse(Rack $rack)
47 47
     {
Please login to merge, or discard this patch.
app/Http/Controllers/PurchaseController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
     /**
85 85
      * Get the supplier depending on the request.
86 86
      *
87
-     * @param $request
87
+     * @param Request $request
88 88
      *
89 89
      * @return static
90 90
      */
Please login to merge, or discard this patch.