Skip to content

Commit

Permalink
Fix codestyle
Browse files Browse the repository at this point in the history
  • Loading branch information
ifox committed May 23, 2023
1 parent 26998e0 commit 078d8ca
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/View/Components/Blocks/TwillBlockComponent.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,14 +85,16 @@ public function repeater(string $repeaterName): Collection
*
* By default this will be prefixed with getBlockTitle, you can disable that by returning true in shouldHidePrefix.
*/
public static function getBlockTitleField(): ?string {
public static function getBlockTitleField(): ?string
{
return null;
}

/**
* If the prefix should be hidden when using getBlockTitleField.
*/
public static function shouldHidePrefix(): bool {
public static function shouldHidePrefix(): bool
{
return false;
}

Expand Down

0 comments on commit 078d8ca

Please sign in to comment.