fix tests run
Tests / PHPUnit (push) Successful in 1m14s

This commit is contained in:
root
2026-07-18 14:50:42 -04:00
parent 716cc8b8d3
commit d34dbd2a47
2 changed files with 0 additions and 3 deletions
-1
View File
@@ -18,7 +18,6 @@ class LoginActivityModel extends Model
'logout_time',
'ip_address',
'user_agent',
'semester',
'created_at',
'updated_at',
'school_year',
-2
View File
@@ -21,7 +21,6 @@ class PaymentTransactionModel extends Model
'payment_method',
'payment_status',
'transaction_fee',
'semester',
'school_year'
];
@@ -34,7 +33,6 @@ class PaymentTransactionModel extends Model
'amount' => 'required|decimal',
'payment_method' => 'required|string|max_length[50]',
'payment_status' => 'required|string|max_length[50]',
'semester' => 'permit_empty|string|max_length[30]',
'school_year' => 'required|string|max_length[9]',
];