Skip to content

Commit 8afad67

Browse files
committed
--forc
1 parent 4f1e7ce commit 8afad67

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Attributes/Computed.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public function getResult(FormAction $action, string $property): mixed
1818
{
1919
$inspector = Inspector::make($action);
2020

21-
if(is_null($this->method)) {
21+
if (is_null($this->method)) {
2222
$this->method = 'get'.ucfirst($property).'Property';
2323
}
2424

tests/ComputedAttributeFeatureTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ public function handle(): string
173173
{
174174
return $this->user->name;
175175
}
176-
};
176+
}
177177

178178
$action = new TestClass2(request: new Request([
179179
'name' => 'John Doe',

0 commit comments

Comments
 (0)