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 ( e7e058...ce7a57 )
by Aden
03:02
created
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.