Skip to content

Commit 85f9f23

Browse files
committed
Code beautifier.
Signed-off-by: Joshua Parker <joshua@joshuaparker.dev>
1 parent ea9d63c commit 85f9f23

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Auth/Traits/BadPropertyCallException.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,4 @@
88

99
class BadPropertyCallException extends Exception
1010
{
11-
12-
}
11+
}

Auth/Traits/ImmutableAware.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ private function withProperty(string $property, mixed $value): static
2525
);
2626
}
2727

28-
if ((isset($this->{$property}) && $this->{$property} === $value) ||
28+
if (
29+
(isset($this->{$property}) && $this->{$property} === $value) ||
2930
(!isset($this->{$property}) && $value === null)
3031
) {
3132
return $this;

0 commit comments

Comments
 (0)