From 2255f34f7310fd421489e25de311379577573e4b Mon Sep 17 00:00:00 2001 From: nikhil trivedi Date: Fri, 17 Jan 2025 17:20:00 -0600 Subject: [PATCH] Lint code [WEB-2984] --- app/Models/Behaviors/HasAuthors.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/Models/Behaviors/HasAuthors.php b/app/Models/Behaviors/HasAuthors.php index bfff88acc..29c09387b 100644 --- a/app/Models/Behaviors/HasAuthors.php +++ b/app/Models/Behaviors/HasAuthors.php @@ -27,7 +27,8 @@ public function showAuthors() } } - public function getAuthorAttribute() { + public function getAuthorAttribute() + { return $this->showAuthors(); }