ScoolTimetables   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 24
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 3
Bugs 0 Features 2
Metric Value
wmc 2
c 3
b 0
f 2
lcom 0
cbo 0
dl 0
loc 24
ccs 0
cts 14
cp 0
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A factories() 0 7 1
A configs() 0 7 1
1
<?php
2
3
namespace Scool\Timetables;
4
5
/**
6
 * Class ScoolTimetables
7
 * @package Scool\Timetables
8
 */
9
class ScoolTimetables
10
{
11
    /**
12
     * @return array
13
     */
14
    public static function factories()
15
    {
16
        return [
17
            SCOOL_TIMETABLES_PATH . '/database/factories/ShiftFactory.php' =>
18
                database_path('/factories/ShiftFactory.php')
19
        ];
20
    }
21
22
    /**
23
     * @return array
24
     */
25
    public static function configs()
26
    {
27
        return [
28
            SCOOL_TIMETABLES_PATH . '/config/timetables.php' =>
29
                config_path('timetables.php'),
30
        ];
31
    }
32
}
33