Test Setup Failed
Push — master ( 3a1761...2fc4ab )
by Mohamed
17:58 queued 11:22
created
app/Models/Base_Model.php 1 patch
Spacing   +3 added lines, -3 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 Illuminate\Support\Facades\Auth;
8 8
 
9
-class Base_Model extends Model{
9
+class Base_Model extends Model {
10 10
 
11 11
 
12 12
 
@@ -18,10 +18,10 @@  discard block
 block discarded – undo
18 18
     {
19 19
 
20 20
         parent::boot();
21
-        self::creating(function ($model) {
21
+        self::creating(function($model) {
22 22
             $model->created = Carbon::now();
23 23
         });
24
-        self::updating(function ($model) {
24
+        self::updating(function($model) {
25 25
             $model->modified = Carbon::now();
26 26
         });
27 27
     }
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/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.
app/Models/User_special_need.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 User_special_need extends Base_Model  {
7
+class User_special_need extends Base_Model {
8 8
 
9 9
     /**
10 10
      * The database table used by the model.
@@ -42,11 +42,11 @@  discard block
 block discarded – undo
42 42
     protected $dates = ['special_need_date', 'modified', 'created'];
43 43
     
44 44
     
45
-     public static function  isDuplicated($inputs){
45
+     public static function  isDuplicated($inputs) {
46 46
 
47
-       $exists = self::where('security_user_id','=',$inputs['security_user_id'])
48
-           ->where('special_need_type_id','=',$inputs['special_need_type_id'])
49
-           ->where('special_need_difficulty_id','=',$inputs['special_need_difficulty_id'])->count();
47
+       $exists = self::where('security_user_id', '=', $inputs['security_user_id'])
48
+           ->where('special_need_type_id', '=', $inputs['special_need_type_id'])
49
+           ->where('special_need_difficulty_id', '=', $inputs['special_need_difficulty_id'])->count();
50 50
 
51 51
 //       dd($exists);
52 52
         return $exists == 0 ? true :false;
Please login to merge, or discard this patch.
app/Models/Security_group_user.php 1 patch
Spacing   +16 added lines, -16 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_group_user extends Model  {
7
+class Security_group_user extends Model {
8 8
 
9 9
     public const CREATED_AT = 'created';
10 10
     public const UPDATED_AT = 'modified';
@@ -45,34 +45,34 @@  discard block
 block discarded – undo
45 45
     protected $dates = ['modified', 'created', 'created'];
46 46
 
47 47
 
48
-    public function security_user(){
49
-        return $this->belongsToMany('App\Models\User','security_users');
48
+    public function security_user() {
49
+        return $this->belongsToMany('App\Models\User', 'security_users');
50 50
     }
51 51
 
52
-    public function security_group(){
53
-        return $this->hasMany('App\Models\Security_group' , 'id','security_group_id');
52
+    public function security_group() {
53
+        return $this->hasMany('App\Models\Security_group', 'id', 'security_group_id');
54 54
     }
55 55
 
56
-    public function security_group_institution(){
57
-        return $this->belongsTo('App\Models\Security_group_institution','security_group_id','security_group_id');
56
+    public function security_group_institution() {
57
+        return $this->belongsTo('App\Models\Security_group_institution', 'security_group_id', 'security_group_id');
58 58
     }
59 59
 
60
-    public function staff_class(){
61
-        return $this->hasMany('App\Models\Institution_class','staff_id','security_user_id');
60
+    public function staff_class() {
61
+        return $this->hasMany('App\Models\Institution_class', 'staff_id', 'security_user_id');
62 62
     }
63 63
 
64
-    public function institution_staff(){
65
-        return $this->belongsTo('App\Models\Institution_staff','security_user_id','staff_id');
64
+    public function institution_staff() {
65
+        return $this->belongsTo('App\Models\Institution_staff', 'security_user_id', 'staff_id');
66 66
     }
67 67
 
68
-    public function institution_group(){
69
-        return $this->hasMany('App\Models\Security_group_institution','security_group_id','security_group_id')
70
-            ->with(['institution','institution_classes']);
68
+    public function institution_group() {
69
+        return $this->hasMany('App\Models\Security_group_institution', 'security_group_id', 'security_group_id')
70
+            ->with(['institution', 'institution_classes']);
71 71
     }
72 72
 
73 73
 
74
-    public function roles(){
75
-        return $this->belongsTo('App\Models\Security_role','security_role_id','id');
74
+    public function roles() {
75
+        return $this->belongsTo('App\Models\Security_role', 'security_role_id', 'id');
76 76
     }
77 77
 
78 78
 
Please login to merge, or discard this patch.
app/Models/Security_group.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 Security_group extends Model  {
7
+class Security_group extends Model {
8 8
 
9 9
     /**
10 10
      * The database table used by the model.
@@ -45,13 +45,13 @@  discard block
 block discarded – undo
45 45
 //        return $this->hasMany( User::class);
46 46
 //    }
47 47
 
48
-    public function security_users(){
49
-        return $this->belongsTo('App\Models\Security_group_user','security_group_id');
48
+    public function security_users() {
49
+        return $this->belongsTo('App\Models\Security_group_user', 'security_group_id');
50 50
     }
51 51
 
52 52
 
53
-    public function security_group_institution(){
54
-        return $this->hasMany('App\Models\Security_group_institution','security_group_id');
53
+    public function security_group_institution() {
54
+        return $this->hasMany('App\Models\Security_group_institution', 'security_group_id');
55 55
     }
56 56
 
57 57
 }
58 58
\ No newline at end of file
Please login to merge, or discard this patch.
app/Models/User_nationality.php 1 patch
Spacing   +2 added lines, -2 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 User_nationality extends Base_Model  {
8
+class User_nationality extends Base_Model {
9 9
 
10 10
     /**
11 11
      * The database table used by the model.
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
     public static function boot()
48 48
     {
49 49
         parent::boot();
50
-        self::creating(function ($model) {
50
+        self::creating(function($model) {
51 51
             $model->id = (string) Uuid::generate(4);
52 52
         });
53 53
 
Please login to merge, or discard this patch.