Skip to content

Commit fd8043a

Browse files
committed
style: add trailing commas and fix code formatting
1 parent d2eca04 commit fd8043a

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

src/Err.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* @param E $value
2020
*/
2121
public function __construct(
22-
private mixed $value
22+
private mixed $value,
2323
) {
2424
}
2525

src/Ok.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,8 @@
1919
* @param T $value
2020
*/
2121
public function __construct(
22-
private mixed $value
23-
)
24-
{
22+
private mixed $value,
23+
) {
2524
}
2625

2726
#[Override]

src/Result.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
*/
1313
abstract readonly class Result
1414
{
15-
1615
/**
1716
* 結果が成功(Ok)の場合に true を返します.
1817
*

0 commit comments

Comments
 (0)