From e9cd8ee246d52b778f0b74059fd1d88e7c1c9ca2 Mon Sep 17 00:00:00 2001 From: Ali Padron Date: Wed, 20 Nov 2024 10:08:01 -0400 Subject: [PATCH] composer format --- tests/TranslatableTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TranslatableTest.php b/tests/TranslatableTest.php index 9a74a32..3976048 100644 --- a/tests/TranslatableTest.php +++ b/tests/TranslatableTest.php @@ -836,7 +836,7 @@ public function setAttributesExternally(array $attributes) // we need to remove the name attribute from the translatable array // and add it back to make sure the name // attribute is holding `null` raw value - $this->testModel->translatable = array_filter($this->testModel->translatable, fn($attribute) => $attribute !== 'name'); + $this->testModel->translatable = array_filter($this->testModel->translatable, fn ($attribute) => $attribute !== 'name'); $this->testModel->name = null; $this->testModel->translatable = array_merge($this->testModel->translatable, ['name']);