Test Setup Failed
Branch master (93675a)
by Mohamed
10:31
created
app/Models/Institution_class_subject.php 1 patch
Spacing   +24 added lines, -24 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_subject extends Base_Model  {
8
+class Institution_class_subject extends Base_Model {
9 9
 
10 10
     /**
11 11
      * The database table used by the model.
@@ -42,11 +42,11 @@  discard block
 block discarded – undo
42 42
      */
43 43
     protected $dates = ['modified', 'created'];
44 44
 
45
-    public function institutionMandatorySubject(){
46
-        return $this->belongsTo('App\Models\Institution_subject','institution_subject_id','id')
45
+    public function institutionMandatorySubject() {
46
+        return $this->belongsTo('App\Models\Institution_subject', 'institution_subject_id', 'id')
47 47
         ->with('institutionGradeSubject')
48
-        ->whereHas('institutionGradeSubject', function ($query) {
49
-                $query->where('auto_allocation',1);
48
+        ->whereHas('institutionGradeSubject', function($query) {
49
+                $query->where('auto_allocation', 1);
50 50
         });
51 51
         // ->using('App\Models\Institution_subject','institution_subjects.education_subject_id','education_grades_subjects.education_subject_id');
52 52
         // return $this->belongsToMany('App\Models\Education_grades_subject','institution_subjects','education_subject_id')
@@ -59,11 +59,11 @@  discard block
 block discarded – undo
59 59
             // });
60 60
     }
61 61
 
62
-    public function institutionOptionalSubject(){
63
-        return $this->belongsTo('App\Models\Institution_subject','institution_subject_id','id')
62
+    public function institutionOptionalSubject() {
63
+        return $this->belongsTo('App\Models\Institution_subject', 'institution_subject_id', 'id')
64 64
         ->with('institutionGradeSubject')
65
-        ->whereHas('institutionGradeSubject', function ($query) {
66
-                $query->where('auto_allocation',0);
65
+        ->whereHas('institutionGradeSubject', function($query) {
66
+                $query->where('auto_allocation', 0);
67 67
         });
68 68
 
69 69
     }
@@ -71,23 +71,23 @@  discard block
 block discarded – undo
71 71
     public static function boot()
72 72
     {
73 73
         parent::boot();
74
-        self::creating(function ($model) {
74
+        self::creating(function($model) {
75 75
             $model->id = (string) Uuid::generate(4);
76 76
         });
77 77
     }
78 78
 
79
-    public function institutionSubject(){
80
-        return $this->belongsTo('App\Models\Institution_subject','institution_subject_id','id')
79
+    public function institutionSubject() {
80
+        return $this->belongsTo('App\Models\Institution_subject', 'institution_subject_id', 'id')
81 81
         ->with('institutionGradeSubject');
82 82
     }
83 83
 
84 84
 
85
-    public static function getMandetorySubjects($institutionClass){
85
+    public static function getMandetorySubjects($institutionClass) {
86 86
         $institutionGrade = Institution_class_grade::where('institution_class_id', '=', $institutionClass)->first();
87 87
         $mandatorySubject = Institution_class_subject::with(['institutionSubject'])
88
-            ->whereHas('institutionSubject', function ($query) use ($institutionGrade) {
89
-                $query->whereHas('institutionGradeSubject',function($query){
90
-                    $query->where('auto_allocation',1);
88
+            ->whereHas('institutionSubject', function($query) use ($institutionGrade) {
89
+                $query->whereHas('institutionGradeSubject', function($query) {
90
+                    $query->where('auto_allocation', 1);
91 91
                 })->where('education_grade_id', $institutionGrade->education_grade_id);
92 92
                 // ->where('auto_allocation', $institutionGrade->education_grade_id);
93 93
             })
@@ -100,9 +100,9 @@  discard block
 block discarded – undo
100 100
         $data = [];
101 101
         foreach ($subjects as $subject) {
102 102
             $subjectId = Institution_class_subject::with(['institutionSubject'])
103
-                ->whereHas('institutionSubject', function ($query) use ($row, $subject, $student) {
104
-                    $query->whereHas('institutionGradeSubject',function($query){
105
-                        $query->where('auto_allocation',0);
103
+                ->whereHas('institutionSubject', function($query) use ($row, $subject, $student) {
104
+                    $query->whereHas('institutionGradeSubject', function($query) {
105
+                        $query->where('auto_allocation', 0);
106 106
                     })
107 107
                         ->where('name', '=', $row[$subject])
108 108
                         ->where('education_grade_id', '=', $student->education_grade_id);
@@ -115,15 +115,15 @@  discard block
 block discarded – undo
115 115
         return $data;
116 116
     }
117 117
 
118
-    public function getInstitutionClassSubjects($academicPeriodId,$classIds){
118
+    public function getInstitutionClassSubjects($academicPeriodId, $classIds) {
119 119
         return self::query()
120
-            ->whereIn('institution_class_id',$classIds)
120
+            ->whereIn('institution_class_id', $classIds)
121 121
             ->get()
122 122
             ->toArray();
123 123
     }
124 124
 
125
-    public function isDuplicated($subject){
126
-        return self::query()->where('institution_subject_id',$subject['institution_subject_id'])
127
-            ->where('institution_class_id',$subject['institution_class_id'])->exists();
125
+    public function isDuplicated($subject) {
126
+        return self::query()->where('institution_subject_id', $subject['institution_subject_id'])
127
+            ->where('institution_class_id', $subject['institution_class_id'])->exists();
128 128
     }
129 129
 }
Please login to merge, or discard this patch.
app/Models/Special_need_difficulty.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 Special_need_difficulty extends Model  {
7
+class Special_need_difficulty 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/Education_grades_subject.php 1 patch
Spacing   +3 added lines, -3 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 Education_grades_subject extends Model  {
7
+class Education_grades_subject extends Model {
8 8
 
9 9
     /**
10 10
      * The database table used by the model.
@@ -42,8 +42,8 @@  discard block
 block discarded – undo
42 42
     protected $dates = ['modified', 'created'];
43 43
 
44 44
 
45
-    public function institutionGradeSubject(){
46
-        return $this->hasMany('App\Models\Institution_subject','education_grade_id','education_grade_id');
45
+    public function institutionGradeSubject() {
46
+        return $this->hasMany('App\Models\Institution_subject', 'education_grade_id', 'education_grade_id');
47 47
     }
48 48
 
49 49
 
Please login to merge, or discard this patch.
app/Models/Security_user.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 use Webpatser\Uuid\Uuid;
9 9
 
10 10
 
11
-class Security_user extends Base_Model  {
11
+class Security_user extends Base_Model {
12 12
 
13 13
     public const CREATED_AT = 'created';
14 14
     public const UPDATED_AT = 'modified';
@@ -83,13 +83,13 @@  discard block
 block discarded – undo
83 83
      */
84 84
     protected $casts = [];
85 85
 
86
-    public function institutionStudents(){
87
-        return $this->hasOne(Institution_student::class,'student_id');
86
+    public function institutionStudents() {
87
+        return $this->hasOne(Institution_student::class, 'student_id');
88 88
     }
89 89
 
90 90
 
91 91
 
92
-    public function institutionStudentsClass(){
92
+    public function institutionStudentsClass() {
93 93
         return $this->hasOne(Institution_student::class, 'student_id');
94 94
     }
95 95
 
@@ -121,24 +121,24 @@  discard block
 block discarded – undo
121 121
 
122 122
 
123 123
 
124
-    public function getAuthPassword(){
124
+    public function getAuthPassword() {
125 125
         return $this->password;
126 126
     }
127 127
 
128
-    public function uploads(){
128
+    public function uploads() {
129 129
        return $this->hasMany('App\Models\Upload');
130 130
     }
131 131
 
132 132
     public function class(){
133
-        return $this->belongsTo('App\Models\Institution_class_student','id','student_id');
133
+        return $this->belongsTo('App\Models\Institution_class_student', 'id', 'student_id');
134 134
     }
135 135
 
136
-    public function special_needs(){
137
-        return $this->hasMany('App\Models\User_special_need','id','security_user_id');
136
+    public function special_needs() {
137
+        return $this->hasMany('App\Models\User_special_need', 'id', 'security_user_id');
138 138
     }
139 139
 
140
-    public function genUUID(){
140
+    public function genUUID() {
141 141
         $uuid = Uuid::generate(4);
142
-        return str_split($uuid,'8')[0];
142
+        return str_split($uuid, '8')[0];
143 143
     }
144 144
 }
Please login to merge, or discard this patch.
app/Models/Institution_shift.php 1 patch
Spacing   +9 added lines, -9 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_shift extends Base_Model  {
7
+class Institution_shift extends Base_Model {
8 8
 
9 9
     /**
10 10
      * The database table used by the model.
@@ -41,20 +41,20 @@  discard block
 block discarded – undo
41 41
      */
42 42
     protected $dates = ['modified', 'created'];
43 43
 
44
-    public function shiftExists($shift){
44
+    public function shiftExists($shift) {
45 45
        return self::query()
46
-            ->where('institution_id',$shift['institution_id'])
47
-            ->where('location_institution_id',$shift['location_institution_id'])
48
-            ->where('shift_option_id',$shift['shift_option_id'])
49
-            ->where('academic_period_id',$shift['academic_period_id'])->exists();
46
+            ->where('institution_id', $shift['institution_id'])
47
+            ->where('location_institution_id', $shift['location_institution_id'])
48
+            ->where('shift_option_id', $shift['shift_option_id'])
49
+            ->where('academic_period_id', $shift['academic_period_id'])->exists();
50 50
     }
51 51
 
52
-    public function getShiftsToClone(int $year){
52
+    public function getShiftsToClone(int $year) {
53 53
         return self::query()
54 54
             ->select('institution_shifts.*')
55
-            ->join('academic_periods','academic_periods.id','=','institution_shifts.academic_period_id')
55
+            ->join('academic_periods', 'academic_periods.id', '=', 'institution_shifts.academic_period_id')
56 56
             // ->where('academic_periods.code',$year)
57
-            ->where('institution_shifts.cloned',$year)
57
+            ->where('institution_shifts.cloned', $year)
58 58
             ->get()->toArray();
59 59
     }
60 60
 }
Please login to merge, or discard this patch.
app/Models/Institution_class_student.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
 use Illuminate\Support\Facades\Auth;
7 7
 use Webpatser\Uuid\Uuid;
8 8
 
9
-class Institution_class_student extends Model  {
9
+class Institution_class_student extends Model {
10 10
 
11 11
     /**
12 12
      * The database table used by the model.
@@ -51,26 +51,26 @@  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
             $model->created = now();
57 57
         });
58 58
     }
59 59
 
60
-    public function student(){
61
-        return $this->belongsTo('App\Models\Security_user','student_id');
60
+    public function student() {
61
+        return $this->belongsTo('App\Models\Security_user', 'student_id');
62 62
     }
63 63
 
64 64
     public  static function getStudentsCount($institution_class_id) {
65 65
         $total_male_students = self::with(['student' => function($query) {
66 66
                         $query->where('student.gender_id', '=', 1);
67
-                    }])->whereHas('student', function ($query) {
67
+                    }])->whereHas('student', function($query) {
68 68
                     $query->where('gender_id', '=', 1);
69 69
                 })->where('institution_class_id', '=', $institution_class_id)->count();
70 70
 
71 71
         $total_female_students = self::with(['student' => function($query) {
72 72
                         $query->where('student.gender_id', '=', 2);
73
-                    }])->whereHas('student', function ($query) {
73
+                    }])->whereHas('student', function($query) {
74 74
                     $query->where('gender_id', '=', 2);
75 75
                 })->where('institution_class_id', '=', $institution_class_id)->count();
76 76
 
@@ -84,19 +84,19 @@  discard block
 block discarded – undo
84 84
         ];
85 85
     }
86 86
 
87
-    public static function  isDuplicated($inputs){
87
+    public static function  isDuplicated($inputs) {
88 88
 
89
-        $exists = self::where('student_id','=',$inputs['student_id'])
90
-            ->where('institution_class_id',$inputs['institution_class_id'])
89
+        $exists = self::where('student_id', '=', $inputs['student_id'])
90
+            ->where('institution_class_id', $inputs['institution_class_id'])
91 91
             ->count();
92 92
 
93 93
         return $exists;
94 94
     }
95 95
 
96
-    public function getStudentNewClass($student){
96
+    public function getStudentNewClass($student) {
97 97
         return self::query()
98
-            ->where('student_id',$student['student_id'])
99
-            ->join('institution_classes','institution_class_students.institution_class_id','=','institution_classes.id')
98
+            ->where('student_id', $student['student_id'])
99
+            ->join('institution_classes', 'institution_class_students.institution_class_id', '=', 'institution_classes.id')
100 100
             ->where('institution_class_students.student_id', $student['student_id'])
101 101
             ->get()->last();
102 102
     }
Please login to merge, or discard this patch.
app/Models/Security_role.php 1 patch
Spacing   +3 added lines, -3 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 Security_role extends Model  {
7
+class Security_role extends Model {
8 8
 
9 9
     /**
10 10
      * The database table used by the model.
@@ -42,8 +42,8 @@  discard block
 block discarded – undo
42 42
     protected $dates = ['modified', 'created'];
43 43
 
44 44
 
45
-    public function securityUsers(){
46
-        return $this->belongsToMany(Security_group_user::class,'security_group_users','security_group_id','security_group_id');
45
+    public function securityUsers() {
46
+        return $this->belongsToMany(Security_group_user::class, 'security_group_users', 'security_group_id', 'security_group_id');
47 47
     }
48 48
 
49 49
 
Please login to merge, or discard this patch.
app/Models/User_identity.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
 use Illuminate\Database\Eloquent\Model;
6 6
 use Webpatser\Uuid\Uuid;
7 7
 
8
-class User_identity extends Model  {
8
+class User_identity extends Model {
9 9
     
10 10
     public const CREATED_AT = 'created';
11 11
     public const UPDATED_AT = 'modified';
Please login to merge, or discard this patch.
app/Models/Institution_subjects_room.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 Institution_subjects_room extends Model  {
7
+class Institution_subjects_room extends Model {
8 8
 
9 9
     /**
10 10
      * The database table used by the model.
Please login to merge, or discard this patch.