DatabaseSeeder   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A run() 0 2 1
1
<?php
2
3
namespace Database\Seeders;
4
5
use Illuminate\Database\Seeder;
6
7
class DatabaseSeeder extends Seeder
8
{
9
    /**
10
     * Seed the application's database.
11
     *
12
     * @return void
13
     */
14
    public function run()
15
    {
16
        // \App\Models\User::factory(10)->create();
17
    }
18
}
19