Skip to content

Commit a5e33d2

Browse files
Thiktakgithub-actions[bot]
authored andcommitted
Fix styling
1 parent 74ad1b4 commit a5e33d2

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/Forms/Components/NestedBuilder.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ class NestedBuilder extends NestedSubBuilder
1212

1313
protected NestedSubBuilder $nestedSubBuilder;
1414

15-
1615
public function nestedSchema(Closure $components, string $name = 'default'): static
1716
{
1817
$this->nestedSchemas[$name] = $components;

src/Forms/Components/NestedSubBuilder.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ class NestedSubBuilder extends Builder
1010

1111
public int $level = 1;
1212

13-
1413
public function nestedBuilder(NestedBuilder $nestedBuilder): self
1514
{
1615
$this->nestedBuilder = $nestedBuilder;
@@ -37,7 +36,7 @@ public function getLevel(): int
3736

3837
public function getChildComponents(): array
3938
{
40-
if (!$this->childComponents) {
39+
if (! $this->childComponents) {
4140
$this->childComponents(
4241
(array) $this->evaluate(
4342
$this->getNestedBuilder()->getNestedNamedChildComponents(),

0 commit comments

Comments
 (0)