Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
refactor: fix formatting
Signed-off-by: Jana Peper <[email protected]>
  • Loading branch information
janepie committed Aug 27, 2025
commit 911a539b21601bb67069c554beebbeea4852d026
2 changes: 1 addition & 1 deletion lib/Search/SearchAccountsProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,6 @@ protected function getThumbnailUrl(array $entry): array {
return [true, $url];
}
public function isExternalProvider(): bool {
return True;
return true;
}
}
4 changes: 2 additions & 2 deletions lib/Search/SearchHashtagsProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ protected function getThumbnailUrl(array $entry): array {
return [true, $url];
}

public function isExternalProvider(): bool {
return True;
public function isExternalProvider(): bool {
return true;
}
}
4 changes: 2 additions & 2 deletions lib/Search/SearchStatusesProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ protected function getThumbnailUrl(array $entry): array {
return [true, $url];
}

public function isExternalProvider(): bool {
return True;
public function isExternalProvider(): bool {
return true;
}
}