From 95433f9daca279446748a52a9e7c8da51a7a57b6 Mon Sep 17 00:00:00 2001 From: Chris Morrell Date: Thu, 19 Dec 2024 13:35:10 -0500 Subject: [PATCH] Fix $incrementing --- tests/Feature/EagerLoadingTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/Feature/EagerLoadingTest.php b/tests/Feature/EagerLoadingTest.php index c60b05fa..59dc78ca 100644 --- a/tests/Feature/EagerLoadingTest.php +++ b/tests/Feature/EagerLoadingTest.php @@ -54,6 +54,8 @@ public function getTestModel(): ?TestEagerLoadingModel class TestEagerLoadingModel extends Model { + public $incrementing = false; + public $timestamps = false; protected $table = 'test_eager_loading';