Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Nov 3, 2023
1 parent 9c73544 commit f171d70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Illuminate/View/View.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public function fragment($fragment)
/**
* Get the evaluated contents for a given array of fragments or return all fragments.
*
* @param array|null $fragments
* @param array|null $fragments
* @return string
*/
public function fragments(?array $fragments = null)
Expand Down Expand Up @@ -142,7 +142,7 @@ public function fragmentsIf($boolean, ?array $fragments = null)
*/
protected function allFragments()
{
return collect($this->render(fn() => $this->factory->getFragments()))->implode('');
return collect($this->render(fn () => $this->factory->getFragments()))->implode('');
}

/**
Expand Down

0 comments on commit f171d70

Please sign in to comment.