Completed
Push — master ( bdc961...695b22 )
by David Martínez
05:31
created

AttendancesSeeder   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 12
ccs 0
cts 3
cp 0
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A run() 0 4 1
1
<?php
2
3
namespace Scool\Timetables\Database\Seeds;
4
5
use Illuminate\Database\Seeder;
6
7
/**
8
 * Class AttendancesSeeder
9
 * @package Scool\Timetables\Database\Seeds
10
 */
11
class AttendancesSeeder extends Seeder
12
{
13
    /**
14
     * Run the database seeds.
15
     *
16
     * @return void
17
     */
18
    public function run()
19
    {
20
        //
21
    }
22
}
23