Test Setup Failed
Push — master ( 0f6cfc...f582da )
by Mohamed
20:38 queued 13:10
created
app/Console/Commands/UpdateStudentsCount.php 1 patch
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
             $func = array($this,'updateCount');
54 54
             array_walk($subjects,array($this,'process'));
55 55
             $this->output->writeln('start updating:'. count($classes));
56
-        }elseif($this->argument('entity') == 'subject'){
56
+        } elseif($this->argument('entity') == 'subject'){
57 57
             $subjects = Institution_subject::get()->toArray(); 
58 58
             $subjects = array_chunk($subjects,10000);
59 59
             $this->output->writeln('start updating:'. count($subjects));
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
             $func = array($this,'updateCount');
69 69
             processParallel($func,$data,$this->argument('max'));
70 70
             $this->output->writeln('start updating calss count:'. count($data));
71
-        }elseif($this->argument('entity') == 'subject'){
71
+        } elseif($this->argument('entity') == 'subject'){
72 72
             $this->output->writeln('start updating subject count:'. count($data));
73 73
             $func_subject = array($this,'updateSubjectCount');
74 74
             processParallel($func_subject,$data,$this->argument('max'));
Please login to merge, or discard this patch.
app/Console/Commands/CleanExamData.php 1 patch
Braces   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
             ->whereRaw('CHAR_LENGTH(nsid) > 11')
54 54
             ->get()
55 55
             ->toArray();
56
-        }elseif($type == 'duplicate'){
56
+        } elseif($type == 'duplicate'){
57 57
             $students = DB::table('institution_students as is')
58 58
             ->join('security_users as su', 'su.id', 'is.student_id')
59 59
             ->where('is.updated_from', 'doe')
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
             ->get()
64 64
             ->toArray();
65 65
             
66
-        }elseif('all'){
66
+        } elseif('all'){
67 67
             $students = DB::table('examination_students')
68 68
             ->where('nsid','<>','')
69 69
             ->whereNotNull('nsid')
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
             $students = array_chunk($students, $this->argument('chunk'));
78 78
             $function = array($this, 'process');
79 79
             processParallel($function,$students, $this->argument('max'));
80
-        }else{
80
+        } else{
81 81
             $this->output->writeln('nothing to process, all are cleaned');
82 82
         }   
83 83
         $this->output->writeln('###########################################------Finished cleaning exam records------###########################################');
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
         $type = $this->argument('type');
88 88
        if($type == 'duplication'){
89 89
         array_walk($students,array($this,'cleanData'));
90
-       }elseif($type == 'invalid' || 'all'){
90
+       } elseif($type == 'invalid' || 'all'){
91 91
         array_walk($students,array($this,'cleanInvalidData'));
92 92
        }
93 93
     }
Please login to merge, or discard this patch.