Skip to content

Commit

Permalink
Fix code styling
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell authored and github-actions[bot] committed Oct 9, 2024
1 parent 7f2060e commit 0f3848a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Feature/FormTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@
$responses = form()
->text('What is your name?')
->select('What is your language?', ['PHP', 'JS'])
->addIf(fn ($responses) => $responses[1] === 'PHP', fn ($responses) => text("Which version?"))
->addIf(fn ($responses) => $responses[1] === 'PHP', fn ($responses) => text('Which version?'))
->confirm('Are you sure?')
->submit();

Expand All @@ -216,7 +216,7 @@
$responses = form()
->text('What is your name?')
->select('What is your language?', ['PHP', 'JS'])
->addIf(fn ($responses) => $responses[1] === 'PHP', fn ($responses) => text("Which version?"))
->addIf(fn ($responses) => $responses[1] === 'PHP', fn ($responses) => text('Which version?'))
->confirm('Are you sure?')
->submit();

Expand Down

0 comments on commit 0f3848a

Please sign in to comment.