Skip to content

Commit

Permalink
lint: fix php
Browse files Browse the repository at this point in the history
Signed-off-by: Varun Patil <[email protected]>
  • Loading branch information
pulsejet committed Apr 24, 2024
1 parent 9395795 commit 0a49b77
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/Service/Index.php
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,9 @@ public function indexFolder(Folder $folder): void
$this->log("Indexing folder {$path}", true);

// Check if path is blacklisted
if (!$this->isPathAllowed($path . '/')) {
if (!$this->isPathAllowed($path.'/')) {
$this->log("Skipping folder {$path} (path excluded)".PHP_EOL, true);

return;
}

Expand Down

0 comments on commit 0a49b77

Please sign in to comment.