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 ( 75bc50...e256ba )
by Aden
04:12
created
src/Flare/FlareServiceProvider.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@
 block discarded – undo
127 127
     /**
128 128
      * Returns the path to a provided file within the Flare package.
129 129
      * 
130
-     * @param bool $fiepath
130
+     * @param bool $filepath
131 131
      * 
132 132
      * @return string
133 133
      */
Please login to merge, or discard this patch.
src/Flare/Admin/Models/ModelAdminController.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -237,7 +237,6 @@
 block discarded – undo
237 237
     /**
238 238
      * Process Restore ModelItem Request.
239 239
      *
240
-     * @param int $page_id
241 240
      * 
242 241
      * @return \Illuminate\Http\RedirectResponse
243 242
      */
Please login to merge, or discard this patch.
src/Flare/Admin/Models/AttributeCollection.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -33,6 +33,7 @@
 block discarded – undo
33 33
      * Create a new collection.
34 34
      *
35 35
      * @param mixed $items
36
+     * @param ModelAdmin $modelManager
36 37
      */
37 38
     public function __construct($items = [], $modelManager = null)
38 39
     {
Please login to merge, or discard this patch.
src/Flare/Http/Controllers/LTS/AdminController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
     /**
75 75
      * Log the user.
76 76
      *
77
-     * @return \Illuminate\Http\RedirectReponse
77
+     * @return \Illuminate\Http\RedirectResponse
78 78
      */
79 79
     public function getLogout()
80 80
     {
Please login to merge, or discard this patch.
src/Flare/Flare.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@
 block discarded – undo
98 98
     /**
99 99
      * Returns the Application Instance.
100 100
      * 
101
-     * @return mixed
101
+     * @return Application
102 102
      */
103 103
     public function app()
104 104
     {
Please login to merge, or discard this patch.
src/Flare/Admin/Models/ModelAdmin.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -527,7 +527,7 @@  discard block
 block discarded – undo
527 527
     /**
528 528
      * Determine if the Model Admin has Viewing Capabilities.
529 529
      * 
530
-     * @return bool
530
+     * @return null|boolean
531 531
      */
532 532
     public function hasViewing()
533 533
     {
@@ -598,7 +598,7 @@  discard block
 block discarded – undo
598 598
     /**
599 599
      * Determine if the Model Admin has Validating Capabilities.
600 600
      * 
601
-     * @return bool
601
+     * @return null|boolean
602 602
      */
603 603
     public function hasValidating()
604 604
     {
@@ -620,7 +620,7 @@  discard block
 block discarded – undo
620 620
      * 
621 621
      * @param string $trait
622 622
      * 
623
-     * @return bool
623
+     * @return null|boolean
624 624
      */
625 625
     public function hasTrait($trait = null)
626 626
     {
@@ -636,7 +636,7 @@  discard block
 block discarded – undo
636 636
      * 
637 637
      * @param string $contract
638 638
      * 
639
-     * @return bool
639
+     * @return boolean|null
640 640
      */
641 641
     public function hasContract($contract = null)
642 642
     {
Please login to merge, or discard this patch.
src/Flare/Providers/AuthServiceProvider.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,6 @@
 block discarded – undo
29 29
     /**
30 30
      * Register any application authentication / authorization services.
31 31
      *
32
-     * @param \Illuminate\Contracts\Auth\Access\Gate $gate
33 32
      */
34 33
     public function boot()
35 34
     {
Please login to merge, or discard this patch.
src/Flare/Admin/Models/Traits/ModelQuerying.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -139,6 +139,7 @@
 block discarded – undo
139 139
     /**
140 140
      * Performs the Model Query.
141 141
      * 
142
+     * @param boolean $count
142 143
      * @return \Illuminate\Database\Eloquent\Collection
143 144
      */
144 145
     private function query($count)
Please login to merge, or discard this patch.
src/Flare/Http/Controllers/Edge/AdminController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
     /**
85 85
      * Log the user.
86 86
      *
87
-     * @return \Illuminate\Http\RedirectReponse
87
+     * @return \Illuminate\Http\RedirectResponse
88 88
      */
89 89
     public function getLogout()
90 90
     {
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
      * panel. If they do no, they will be sent
122 122
      * to the homepage of the website.
123 123
      * 
124
-     * @return \Illuminate\Http\RedirectReponse
124
+     * @return \Illuminate\Http\RedirectResponse
125 125
      */
126 126
     protected function loginRedirect()
127 127
     {
Please login to merge, or discard this patch.