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 12, 2023
1 parent ad3348c commit 09476b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion extend.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
use FoF\Clockwork\Extend\FileStoragePath;

return [
(new FileStoragePath()),
new FileStoragePath(),

(new Extend\Frontend('forum'))
->content(AddFrontendData::class),
Expand Down
2 changes: 1 addition & 1 deletion src/Clockwork/FlarumDataSource.php
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ protected function getSessionData()
protected function resolveAuthenticatedUser(Request $request)
{
$user = RequestUtil::getActor($this->request);
if ($user->isGuest()){
if ($user->isGuest()) {
return;
}
if (!isset($user->email) || !isset($user->id)) {
Expand Down

0 comments on commit 09476b0

Please sign in to comment.