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
|
|
|
]; |
38
|
|
|
} |
39
|
|
|
|
40
|
|
|
/** |
41
|
|
|
* @return array |
42
|
|
|
*/ |
43
|
|
|
public static function configs() |
44
|
|
|
{ |
45
|
|
|
return [ |
46
|
|
|
SCOOL_ENROLLMENT_MOBILE_PATH . '/config/payment.php' => |
47
|
|
|
config_path('payment.php'), |
48
|
|
|
]; |
49
|
|
|
} |
50
|
|
|
} |
51
|
|
|
|