From b5b881627901dea91a3f1efae1c15455fc247c7f Mon Sep 17 00:00:00 2001 From: Marcus Moore Date: Tue, 27 May 2025 11:37:48 -0700 Subject: [PATCH] Avoid returning null from method that should return a boolean --- app/Models/Asset.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Models/Asset.php b/app/Models/Asset.php index 002f238297..d5567caf03 100644 --- a/app/Models/Asset.php +++ b/app/Models/Asset.php @@ -963,6 +963,7 @@ class Asset extends Depreciable return $this->model->category->require_acceptance; } + return false; }