Total Complexity | 3 |
Total Lines | 45 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 2 |
1 | <?php |
||
9 | class ExaminationStudentMigrate extends Command |
||
10 | { |
||
11 | /** |
||
12 | * The name and signature of the console command. |
||
13 | * |
||
14 | * @var string |
||
15 | */ |
||
16 | protected $signature = 'examination:migrate {year} {grade} {offset} {limit} {mode}'; |
||
17 | |||
18 | /** |
||
19 | * This will migrate set of examination student's from DoE to SIS. |
||
20 | * |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $description = 'This command designed to map and produce new students id for examination'; |
||
24 | |||
25 | /** |
||
26 | * Create a new command instance. |
||
27 | * |
||
28 | * @return void |
||
29 | */ |
||
30 | public function __construct() |
||
31 | { |
||
32 | parent::__construct(); |
||
33 | } |
||
34 | |||
35 | /** |
||
36 | * Execute the console command. |
||
37 | * |
||
38 | * @return mixed |
||
39 | */ |
||
40 | public function handle() |
||
54 | } |
||
55 | } |
||
56 |