Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
Thiktak authored and github-actions[bot] committed Sep 14, 2023
1 parent 74ad1b4 commit a5e33d2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion src/Forms/Components/NestedBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ class NestedBuilder extends NestedSubBuilder

protected NestedSubBuilder $nestedSubBuilder;


public function nestedSchema(Closure $components, string $name = 'default'): static
{
$this->nestedSchemas[$name] = $components;
Expand Down
3 changes: 1 addition & 2 deletions src/Forms/Components/NestedSubBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ class NestedSubBuilder extends Builder

public int $level = 1;


public function nestedBuilder(NestedBuilder $nestedBuilder): self
{
$this->nestedBuilder = $nestedBuilder;
Expand All @@ -37,7 +36,7 @@ public function getLevel(): int

public function getChildComponents(): array
{
if (!$this->childComponents) {
if (! $this->childComponents) {
$this->childComponents(
(array) $this->evaluate(
$this->getNestedBuilder()->getNestedNamedChildComponents(),
Expand Down

0 comments on commit a5e33d2

Please sign in to comment.