From 078d8cad236f991d03a5a3d4f5e7bd45d5f3c146 Mon Sep 17 00:00:00 2001 From: Quentin Renard Date: Tue, 23 May 2023 20:00:39 +0200 Subject: [PATCH] Fix codestyle --- src/View/Components/Blocks/TwillBlockComponent.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/View/Components/Blocks/TwillBlockComponent.php b/src/View/Components/Blocks/TwillBlockComponent.php index dc1c1dd2e..480b83de9 100644 --- a/src/View/Components/Blocks/TwillBlockComponent.php +++ b/src/View/Components/Blocks/TwillBlockComponent.php @@ -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; }