Test Setup Failed
Push — master ( 33eac7...b3ebe3 )
by Mohamed
13:36 queued 07:31
created
app/Console/Commands/CleanExamData.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,10 +48,10 @@
 block discarded – undo
48 48
         DB::table('institution_students as is')
49 49
             ->join('security_users as su', 'su.id', 'is.student_id')
50 50
             ->where('is.updated_from', 'doe')
51
-            ->orWhere('su.updated_from','doe')
51
+            ->orWhere('su.updated_from', 'doe')
52 52
             ->groupBy('is.student_id')
53 53
             ->orderBy('is.student_id')
54
-            ->chunk($this->argument('limit'), function ($Students) use ($output) {
54
+            ->chunk($this->argument('limit'), function($Students) use ($output) {
55 55
                 $output->writeln('###########################################------Start cleanning exam records------###########################################');
56 56
                 foreach ($Students as $Student) {
57 57
                     $exist = Examination_student::where('nsid', $Student->openemis_no)->exist();
Please login to merge, or discard this patch.