From b942d10a80543cded5882da79978c6715e92cfe6 Mon Sep 17 00:00:00 2001 From: Christian Feldkirchner Date: Thu, 21 Apr 2022 00:14:49 +0200 Subject: [PATCH] Update 10_CustomBricks.md Added missing return statement --- docs/10_CustomBricks.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/10_CustomBricks.md b/docs/10_CustomBricks.md index eba414d6..84b7c618 100644 --- a/docs/10_CustomBricks.md +++ b/docs/10_CustomBricks.md @@ -56,7 +56,7 @@ class MyBrick extends AbstractAreabrick public function action(Info $info): ?Response { //call this to activate all the toolbox magic. - parent::action($info); + return parent::action($info); } public function getTemplateDirectoryName():string @@ -211,4 +211,4 @@ toolbox: description: Lorem Ipsum tab: tab2 # <-- add to tab2 config: ~ -``` \ No newline at end of file +```