Skip to content

Commit

Permalink
Fixed code style
Browse files Browse the repository at this point in the history
  • Loading branch information
tabuna authored and github-actions[bot] committed Jul 5, 2023
1 parent b095137 commit d9af108
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Screen/Screen.php
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ public function asyncParticalLayout(Layout $layout, Request $request)
protected function extractState(): Repository
{
// Check if the '_state' parameter is missing
if (!request()->request->has('_state') && session()->missing('_state')) {
if (! request()->request->has('_state') && session()->missing('_state')) {
// Return an empty Repository object
return new Repository();
}
Expand Down

0 comments on commit d9af108

Please sign in to comment.