Skip to content

Commit

Permalink
Merge pull request #270 from lara-zeus/ditch-type-sorry
Browse files Browse the repository at this point in the history
Ditch type hint
  • Loading branch information
atmonshi authored Apr 7, 2024
2 parents 8c50b5f + 8f132bd commit 887d0ab
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/Livewire/FillForms.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,12 @@ protected function getFormModel(): Form
/**
* @throws \Throwable
*/
public function mount(string $slug, ?string $extensionSlug = null, bool $inline = false, array $extensionData = []): void
{
public function mount(
mixed $slug,
mixed $extensionSlug = null,
mixed $extensionData = [],
mixed $inline = false,
): void {
$this->inline = $inline;

$this->zeusForm = config('zeus-bolt.models.Form')::query()
Expand Down

0 comments on commit 887d0ab

Please sign in to comment.