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.
Passed
Push — master ( 11f3a5...9dc363 )
by Tharindu
04:00
created

AuthTableSeeder   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
dl 0
loc 9
rs 10
c 1
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A run() 0 4 1
1
<?php
2
3
use Illuminate\Database\Seeder;
4
5
class AuthTableSeeder extends Seeder
6
{
7
    /**
8
     * Run the database seeds.
9
     */
10
    public function run()
11
    {
12
        factory(App\Models\User::class, 20)->create()->each(function ($user) {
13
            $user->save();
14
        });
15
    }
16
}
17