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 ( cdfaa4...349a83 )
by Aden
03:38
created
src/Flare/Http/Controllers/AdminController.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@  discard block
 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
     {
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
      * panel.If they do no, they will be sent
118 118
      * to the homepage of the website.
119 119
      * 
120
-     * @return \Illuminate\Http\RedirectReponse
120
+     * @return \Illuminate\Http\RedirectResponse
121 121
      */
122 122
     protected function loginRedirect()
123 123
     {
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 \Illuminate\Foundation\Application
102 102
      */
103 103
     public function app()
104 104
     {
Please login to merge, or discard this patch.
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/ModelAdmin.php 1 patch
Doc Comments   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -384,7 +384,7 @@  discard block
 block discarded – undo
384 384
     /**
385 385
      * Determine if the Model Admin has Viewing Capabilities.
386 386
      * 
387
-     * @return bool
387
+     * @return null|boolean
388 388
      */
389 389
     public function hasViewing()
390 390
     {
@@ -394,7 +394,7 @@  discard block
 block discarded – undo
394 394
     /**
395 395
      * Determine if the Model Admin has Creating Capabilities.
396 396
      * 
397
-     * @return bool
397
+     * @return null|boolean
398 398
      */
399 399
     public function hasCreating()
400 400
     {
@@ -404,7 +404,7 @@  discard block
 block discarded – undo
404 404
     /**
405 405
      * Determine if the Model Admin has Cloning Capabilities.
406 406
      * 
407
-     * @return bool
407
+     * @return null|boolean
408 408
      */
409 409
     public function hasCloning()
410 410
     {
@@ -414,7 +414,7 @@  discard block
 block discarded – undo
414 414
     /**
415 415
      * Determine if the Model Admin has Editting Capabilities.
416 416
      * 
417
-     * @return bool
417
+     * @return null|boolean
418 418
      */
419 419
     public function hasEditting()
420 420
     {
@@ -424,7 +424,7 @@  discard block
 block discarded – undo
424 424
     /**
425 425
      * Determine if the Model Admin has Deleting Capabilities.
426 426
      * 
427
-     * @return bool
427
+     * @return null|boolean
428 428
      */
429 429
     public function hasDeleting()
430 430
     {
@@ -457,7 +457,7 @@  discard block
 block discarded – undo
457 457
     /**
458 458
      * Determine if the Model Admin has Validating Capabilities.
459 459
      * 
460
-     * @return bool
460
+     * @return null|boolean
461 461
      */
462 462
     public function hasValidating()
463 463
     {
@@ -479,7 +479,7 @@  discard block
 block discarded – undo
479 479
      * 
480 480
      * @param  string  $trait  
481 481
      * 
482
-     * @return boolean        
482
+     * @return null|boolean        
483 483
      */
484 484
     public function hasTrait($trait = null)
485 485
     {
@@ -497,7 +497,7 @@  discard block
 block discarded – undo
497 497
      * 
498 498
      * @param  string  $contract  
499 499
      * 
500
-     * @return boolean        
500
+     * @return boolean|null        
501 501
      */
502 502
     public function hasContract($contract = null)
503 503
     {
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, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
      * Attempt to reformat the current attribute items array
45 45
      * into the most usable format (an Attribute Collection).
46 46
      * 
47
-     * @return void
47
+     * @return AttributeCollection
48 48
      */
49 49
     public function formatFields()
50 50
     {
Please login to merge, or discard this patch.