Completed
Push — master ( 06b4a8...88e670 )
by Manel
05:44
created

ScoolEnrollmentMobile   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 55
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 7
Bugs 0 Features 0
Metric Value
wmc 3
lcom 0
cbo 0
dl 0
loc 55
rs 10
c 7
b 0
f 0
ccs 0
cts 41
cp 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
B factories() 0 27 1
A configs() 0 7 1
A vue() 0 7 1
1
<?php
2
3
namespace Scool\EnrollmentMobile;
4
5
/**
6
 * Class ScoolEnrollmentMobile
7
 * @package Scool\EnrollmentMobile
8
 */
9
class ScoolEnrollmentMobile
10
{
11
    /**
12
     * @return array
13
     */
14
    public static function factories()
15
    {
16
        return [
17
            SCOOL_ENROLLMENT_MOBILE_PATH . '/database/factories/EnrollmentFactory.php' =>
18
                database_path('/factories/EnrollmentFactory.php'),
19
            SCOOL_ENROLLMENT_MOBILE_PATH . '/database/factories/ClassroomFactory.php' =>
20
                database_path('/factories/ClassroomFactory.php'),
21
            SCOOL_ENROLLMENT_MOBILE_PATH . '/database/factories/CycleFactory.php' =>
22
                database_path('/factories/CycleFactory.php'),
23
            SCOOL_ENROLLMENT_MOBILE_PATH . '/database/factories/DepartmentFactory.php' =>
24
                database_path('/factories/DepartmentFactory.php'),
25
            SCOOL_ENROLLMENT_MOBILE_PATH . '/database/factories/LawFactory.php' =>
26
                database_path('/factories/LawFactory.php'),
27
            SCOOL_ENROLLMENT_MOBILE_PATH . '/database/factories/ModuleFactory.php' =>
28
                database_path('/factories/ModuleFactory.php'),
29
            SCOOL_ENROLLMENT_MOBILE_PATH . '/database/factories/SpecialityFactory.php' =>
30
                database_path('/factories/SpecialityFactory.php'),
31
            SCOOL_ENROLLMENT_MOBILE_PATH . '/database/factories/StudyFactory.php' =>
32
                database_path('/factories/StudyFactory.php'),
33
            SCOOL_ENROLLMENT_MOBILE_PATH . '/database/factories/SubmoduleFactory.php' =>
34
                database_path('/factories/SubmoduleFactory.php'),
35
            SCOOL_ENROLLMENT_MOBILE_PATH . '/database/factories/CourseFactory.php' =>
36
                database_path('/factories/CourseFactory.php'),
37
            SCOOL_ENROLLMENT_MOBILE_PATH . '/database/factories/EnrollmentStudySubmoduleFactory.php' =>
38
                database_path('/factories/EnrollmentStudySubmoduleFactory.php'),
39
        ];
40
    }
41
42
    /**
43
     * @return array
44
     */
45
    public static function configs()
46
    {
47
        return [
48
            SCOOL_ENROLLMENT_MOBILE_PATH . '/config/payment.php' =>
49
                config_path('payment.php'),
50
        ];
51
    }
52
53
    /**
54
     * @return array
55
     */
56
    public static function vue()
57
    {
58
        return [
59
            SCOOL_ENROLLMENT_MOBILE_PATH . '/resources/assets/js/components/ActivityFeed.vue' =>
60
                resource_path('/assets/js/components/ActivityFeed.vue'),
61
        ];
62
    }
63
}
64