Fix Laravel Pint formatting
This commit is contained in:
@@ -9,16 +9,16 @@ class PaymentTransactionTest extends TestCase
|
||||
{
|
||||
public function test_model_metadata_is_converted(): void
|
||||
{
|
||||
$model = new PaymentTransaction();
|
||||
$model = new PaymentTransaction;
|
||||
|
||||
$this->assertSame('payment_transactions', $model->getTable());
|
||||
$this->assertSame('id', $model->getKeyName());
|
||||
$this->assertSame(false, $model->timestamps);
|
||||
$this->assertSame(["transaction_id", "payment_id", "transaction_date", "amount", "payment_method", "payment_status", "transaction_fee", "school_year", "semester"], $model->getFillable());
|
||||
$this->assertSame(['transaction_id', 'payment_id', 'transaction_date', 'amount', 'payment_method', 'payment_status', 'transaction_fee', 'school_year', 'semester'], $model->getFillable());
|
||||
}
|
||||
|
||||
public function test_model_class_loads(): void
|
||||
{
|
||||
$this->assertInstanceOf(PaymentTransaction::class, new PaymentTransaction());
|
||||
$this->assertInstanceOf(PaymentTransaction::class, new PaymentTransaction);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user