From 2381c52c690342f773a7cfa500387b6bfad76952 Mon Sep 17 00:00:00 2001 From: Laria Carolin Chabowski Date: Thu, 30 Apr 2020 09:38:05 +0200 Subject: Automatic code formatting Also add git hooks that checks formatting --- src/ste/TextNode.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/ste/TextNode.php') diff --git a/src/ste/TextNode.php b/src/ste/TextNode.php index e6c7876..c68dd2f 100644 --- a/src/ste/TextNode.php +++ b/src/ste/TextNode.php @@ -2,10 +2,12 @@ namespace kch42\ste; -class TextNode extends ASTNode { +class TextNode extends ASTNode +{ public $text; - public function __construct($tpl, $off, $text = "") { + public function __construct($tpl, $off, $text = "") + { parent::__construct($tpl, $off); $this->text = $text; } -} \ No newline at end of file +} -- cgit v1.2.3-54-g00ecf