Test Setup Failed
Pull Request — master (#461)
by Mohamed
11:33 queued 04:16
created
app/Exports/UsersExport.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -31,12 +31,12 @@  discard block
 block discarded – undo
31 31
     public function __construct($class) {
32 32
 
33 33
         $this->class = $class;
34
-        $this->_file_name = time() . '_' . Auth::user()->id . '_' . 'student_upload.xls';
34
+        $this->_file_name = time().'_'.Auth::user()->id.'_'.'student_upload.xls';
35 35
     }
36 36
 
37 37
     public function registerEvents(): array {
38 38
         return [
39
-        BeforeSheet::class => function(BeforeSheet $event){
39
+        BeforeSheet::class => function(BeforeSheet $event) {
40 40
 //          dd($event->crea)  
41 41
         },
42 42
             BeforeWriting::class => function(BeforeWriting $event) {
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
         $class = $this->class;
64 64
         return Security_user::select('openemis_no', 'first_name', 'gender_id', 'date_of_birth', 'address', 'birthplace_area_id')
65 65
                         ->with(['class', 'special_needs'])
66
-                        ->whereHas('class', function ($query) use ($class) {
66
+                        ->whereHas('class', function($query) use ($class) {
67 67
                             $query->where('institution_class_id', '=', $class);
68 68
                         })
69 69
                         ->get();
Please login to merge, or discard this patch.
app/Models/User_body_mass.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use Illuminate\Database\Eloquent\Model;
6 6
 
7
-class User_body_mass extends Base_Model  {
7
+class User_body_mass extends Base_Model {
8 8
 
9 9
     /**
10 10
      * The database table used by the model.
Please login to merge, or discard this patch.
app/Models/Institution_staff.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
4 4
 
5 5
 use Illuminate\Database\Eloquent\Model;
6 6
 
7
-class Institution_staff extends Model  {
7
+class Institution_staff extends Model {
8 8
 
9 9
     /**
10 10
      * The database table used by the model.
@@ -42,12 +42,12 @@  discard block
 block discarded – undo
42 42
     protected $dates = ['start_date', 'end_date', 'modified', 'created'];
43 43
 
44 44
 
45
-    public function staff_class(){
46
-        return $this->hasMany('App\Models\Institution_class','staff_id','staff_id');
45
+    public function staff_class() {
46
+        return $this->hasMany('App\Models\Institution_class', 'staff_id', 'staff_id');
47 47
     }
48 48
 
49
-    public function institution(){
50
-        return $this->belongsTo('App\Models\Institution','institution_id');
49
+    public function institution() {
50
+        return $this->belongsTo('App\Models\Institution', 'institution_id');
51 51
     }
52 52
 
53 53
 
Please login to merge, or discard this patch.
app/Models/Nationality.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use Illuminate\Database\Eloquent\Model;
6 6
 
7
-class Nationality extends Model  {
7
+class Nationality extends Model {
8 8
 
9 9
     /**
10 10
      * The database table used by the model.
Please login to merge, or discard this patch.
app/Models/Workflow_transition.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use Illuminate\Database\Eloquent\Model;
6 6
 
7
-class Workflow_transition extends Model  {
7
+class Workflow_transition extends Model {
8 8
 
9 9
     public const CREATED_AT = 'created';
10 10
     public const UPDATED_AT = 'modified';
Please login to merge, or discard this patch.
app/Models/Institution_subject_student.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
 use Illuminate\Database\Eloquent\Model;
7 7
 use Webpatser\Uuid\Uuid;
8 8
 
9
-class Institution_subject_student extends Model  {
9
+class Institution_subject_student extends Model {
10 10
 
11 11
 
12 12
     public const CREATED_AT = 'created';
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
     public static function boot()
52 52
     {
53 53
         parent::boot();
54
-        self::creating(function ($model) {
54
+        self::creating(function($model) {
55 55
             $model->id = (string) Uuid::generate(4);
56 56
         });
57 57
 
@@ -69,31 +69,31 @@  discard block
 block discarded – undo
69 69
      *
70 70
      *
71 71
      */
72
-    public static function  isDuplicated($inputs){
72
+    public static function  isDuplicated($inputs) {
73 73
 
74
-       $exists = self::where('student_id','=',$inputs['student_id'])
75
-           ->where('institution_subject_id','=',$inputs['institution_subject_id'])
76
-           ->where('education_subject_id','=',$inputs['education_subject_id'])->count();
74
+       $exists = self::where('student_id', '=', $inputs['student_id'])
75
+           ->where('institution_subject_id', '=', $inputs['institution_subject_id'])
76
+           ->where('education_subject_id', '=', $inputs['education_subject_id'])->count();
77 77
 
78 78
 
79 79
         return $exists ? true :false;
80 80
     }
81 81
 
82 82
     
83
-     public function student(){
84
-        return $this->belongsTo('App\Models\Security_user','student_id');
83
+     public function student() {
84
+        return $this->belongsTo('App\Models\Security_user', 'student_id');
85 85
     }
86 86
     
87
-    public static function getStudentsCount(){
87
+    public static function getStudentsCount() {
88 88
          $total_male_students = self::with(['student' => function($query) {
89 89
                         $query->where('student.gender_id', '=', 1);
90
-                    }])->whereHas('student', function ($query) {
90
+                    }])->whereHas('student', function($query) {
91 91
                     $query->where('gender_id', '=', 1);
92 92
                 })->where('institution_subject_id', '=', $institution_subject_id)->count();
93 93
 
94 94
         $total_female_students = self::with(['student' => function($query) {
95 95
                         $query->where('student.gender_id', '=', 2);
96
-                    }])->whereHas('student', function ($query) {
96
+                    }])->whereHas('student', function($query) {
97 97
                     $query->where('gender_id', '=', 2);
98 98
                 })->where('institution_subject_id', '=', $institution_subject_id)->count();
99 99
 
Please login to merge, or discard this patch.
app/Models/Institution_class_grade.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
5 5
 use Illuminate\Database\Eloquent\Model;
6 6
 use Webpatser\Uuid\Uuid;
7 7
 
8
-class Institution_class_grade extends Base_Model  {
8
+class Institution_class_grade extends Base_Model {
9 9
 
10 10
     /**
11 11
      * The database table used by the model.
@@ -46,9 +46,9 @@  discard block
 block discarded – undo
46 46
      *
47 47
      * @return \Illuminate\Database\Eloquent\Relations\HasManyThrough
48 48
      */
49
-    public function educationSubject(){
50
-        return $this->hasManyThrough('App\Models\Education_grades_subject','App\Models\Institution_subject',
51
-            'education_subject_id' ,'education_subject_id');
49
+    public function educationSubject() {
50
+        return $this->hasManyThrough('App\Models\Education_grades_subject', 'App\Models\Institution_subject',
51
+            'education_subject_id', 'education_subject_id');
52 52
     }
53 53
 
54 54
     /**
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
     public static function boot()
71 71
     {
72 72
         parent::boot();
73
-        self::creating(function ($model) {
73
+        self::creating(function($model) {
74 74
             $model->id = (string) Uuid::generate(4);
75 75
         });
76 76
     }
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
     /**
80 80
      * @return \Illuminate\Database\Eloquent\Relations\BelongsTo
81 81
      */
82
-    public function classes(){
83
-        return $this->belongsTo('App\Models\Institution_grade','institution_class_id','id');
82
+    public function classes() {
83
+        return $this->belongsTo('App\Models\Institution_grade', 'institution_class_id', 'id');
84 84
     }
85 85
 }
Please login to merge, or discard this patch.
app/Models/Institution_class.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
4 4
 
5 5
 use Illuminate\Database\Eloquent\Model;
6 6
 
7
-class Institution_class extends Base_Model  {
7
+class Institution_class extends Base_Model {
8 8
 
9 9
     public const CREATED_AT = 'created';
10 10
     public const UPDATED_AT = 'modified';
@@ -48,22 +48,22 @@  discard block
 block discarded – undo
48 48
      */
49 49
     protected $dates = ['modified', 'created'];
50 50
 
51
-    public function class_teacher(){
52
-        return $this->belongsTo('App\Models\Security_group_user','staff_id','security_user_id');
51
+    public function class_teacher() {
52
+        return $this->belongsTo('App\Models\Security_group_user', 'staff_id', 'security_user_id');
53 53
     }
54 54
 
55
-    public function institution(){
56
-        return $this->belongsTo('App\Models\Institution','institution_id');
55
+    public function institution() {
56
+        return $this->belongsTo('App\Models\Institution', 'institution_id');
57 57
     }
58 58
 
59 59
 
60
-    public function getShiftClasses($shift){
60
+    public function getShiftClasses($shift) {
61 61
         return self::query()
62
-            ->select('institution_classes.id','institution_classes.institution_id','institution_classes.institution_shift_id',
63
-                'institution_classes.name','institution_classes.no_of_students','institution_classes.class_number','institution_class_grades.education_grade_id')
64
-            ->where('institution_shift_id',$shift)
62
+            ->select('institution_classes.id', 'institution_classes.institution_id', 'institution_classes.institution_shift_id',
63
+                'institution_classes.name', 'institution_classes.no_of_students', 'institution_classes.class_number', 'institution_class_grades.education_grade_id')
64
+            ->where('institution_shift_id', $shift)
65 65
 //            ->where('academic_period_id',$academicPeriod)
66
-            ->join('institution_class_grades','institution_classes.id','institution_class_grades.institution_class_id')
66
+            ->join('institution_class_grades', 'institution_classes.id', 'institution_class_grades.institution_class_id')
67 67
             ->groupBy('institution_classes.id')
68 68
             ->get()->toArray();
69 69
     }
Please login to merge, or discard this patch.
app/Models/Area.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use Illuminate\Database\Eloquent\Model;
6 6
 
7
-class Area extends Model  {
7
+class Area extends Model {
8 8
 
9 9
     /**
10 10
      * The database table used by the model.
Please login to merge, or discard this patch.