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

ModelWriting::afterSave()   A

Complexity

Conditions 4
Paths 3

Size

Total Lines 14
Code Lines 6

Duplication

Lines 3
Ratio 21.43 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 3
loc 14
rs 9.2
cc 4
eloc 6
nc 3
nop 0
1
<?php
2
3
namespace LaravelFlare\Flare\Traits\ModelAdmin;
4
5
trait ModelWriting
6
{
7
    use ModelCreating, ModelEditting, ModelDeleting;
8
}