Skip to content

Commit

Permalink
Fix CS issue
Browse files Browse the repository at this point in the history
  • Loading branch information
bastianallgeier committed Sep 5, 2023
1 parent 164ba96 commit a67a066
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions config/areas/site/requests.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
if ($parent === null) {
$site = $kirby->site();
$panel = $site->panel();
$uuid = $site->uuid()?->toString();
$url = $site->url();
$uuid = $site->uuid()?->toString();
$url = $site->url();
$value = $uuid ?? $url;

return [
Expand All @@ -42,8 +42,8 @@

foreach ($parent->childrenAndDrafts()->filterBy('isListable', true) as $child) {
$panel = $child->panel();
$uuid = $child->uuid()?->toString();
$url = $child->url();
$uuid = $child->uuid()?->toString();
$url = $child->url();
$value = $uuid ?? $url;

$pages[] = [
Expand Down

0 comments on commit a67a066

Please sign in to comment.