Skip to content

Commit

Permalink
chore: fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
glennjacobs authored and github-actions[bot] committed Aug 22, 2024
1 parent 9afbb43 commit 1fb63ce
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ protected function getTranslatedRichEditorComponent(string $langCode): Translate
return $this->prepareTranslatedTextComponent($component);
}

public function extraInputAttributes(array | Closure $attributes, bool $merge = false): static
public function extraInputAttributes(array|Closure $attributes, bool $merge = false): static
{
$this->mergeExtraInputAttributes = $merge;

Expand Down Expand Up @@ -134,7 +134,7 @@ protected function prepareTranslatedTextComponent(TranslatedTextInput|Translated
->minLength($this->minLength)
->maxLength($this->maxLength);

if (!empty($this->extraInputAttributes)) {
if (! empty($this->extraInputAttributes)) {
$component->extraInputAttributes($this->extraInputAttributes, $this->mergeExtraInputAttributes);
}

Expand Down Expand Up @@ -202,7 +202,7 @@ public function richtextDisableAllToolbarButtons(bool $condition = true): static
return $this;
}

public function richtextFileAttachmentsDirectory(string | Closure | null $name): static
public function richtextFileAttachmentsDirectory(string|Closure|null $name): static
{
$this->richtextFileAttachmentsDirectory = $name;

Expand Down

0 comments on commit 1fb63ce

Please sign in to comment.