Skip to content

Commit

Permalink
fix: Styles and STan
Browse files Browse the repository at this point in the history
  • Loading branch information
joshbruce committed Jan 21, 2024
1 parent 25344d4 commit 7776382
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/Site.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@

class Site implements SiteInterface
{
private ContentRoot $file_system_root;

private PublicRoot $fileSystemPublicRoot;

private RequestInterface|false $request = false;
Expand All @@ -44,6 +42,9 @@ public static function initWithRequest(
RequestInterface $request
): self|false {
$self = self::init($fileSystemRoot, $domain);
if ($self === false) {
return false;
}
return $self->withRequest($request);
}

Expand Down

0 comments on commit 7776382

Please sign in to comment.