Skip to content

Commit 5c7abec

Browse files
tiagofgithub-actions[bot]
authored andcommitted
Fix styling
1 parent 6ac2be0 commit 5c7abec

6 files changed

Lines changed: 6 additions & 14 deletions

File tree

src/Contracts/IsFilamentAction.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,4 @@
44

55
use Squarebit\Volition\Contracts\IsAction;
66

7-
interface IsFilamentAction extends IsAction, IsFilamentElement
8-
{
9-
}
7+
interface IsFilamentAction extends IsAction, IsFilamentElement {}

src/Contracts/IsFilamentCondition.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,4 @@
44

55
use Squarebit\Volition\Contracts\IsCondition;
66

7-
interface IsFilamentCondition extends IsCondition, IsFilamentElement
8-
{
9-
}
7+
interface IsFilamentCondition extends IsCondition, IsFilamentElement {}

tests/Support/ObjectPropertyCondition.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ class ObjectPropertyCondition implements IsCondition, IsFilamentCondition
1515
public function __construct(
1616
public string $property,
1717
public mixed $value,
18-
) {
19-
}
18+
) {}
2019

2120
public function passes(object $object): bool
2221
{

tests/Support/PrefixAction.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ class PrefixAction implements IsAction, IsFilamentAction
1818

1919
public function __construct(
2020
public string $prefix = ''
21-
) {
22-
}
21+
) {}
2322

2423
/**
2524
* @param TestObject $object

tests/Support/SuffixAction.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ class SuffixAction implements IsAction, IsFilamentAction
1616

1717
public function __construct(
1818
public string $suffix = ''
19-
) {
20-
}
19+
) {}
2120

2221
/**
2322
* @param TestObject $object

tests/Support/TestObject.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,5 @@ class TestObject implements Volitional
1111

1212
public function __construct(
1313
public string $property,
14-
) {
15-
}
14+
) {}
1615
}

0 commit comments

Comments
 (0)