From 76a1e915e0eea54b9b9a01d921efa6f9edffb3a8 Mon Sep 17 00:00:00 2001 From: Laria Carolin Chabowski Date: Sun, 13 Sep 2020 22:25:15 +0200 Subject: Code cleanup - Add parameter and return types - Add missing @throws tags - Add visibilities to consts --- src/ste/TagNode.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ste/TagNode.php') diff --git a/src/ste/TagNode.php b/src/ste/TagNode.php index cef4220..4adcad8 100644 --- a/src/ste/TagNode.php +++ b/src/ste/TagNode.php @@ -18,7 +18,7 @@ class TagNode extends ASTNode * @param int $off * @param string $name */ - public function __construct($tpl, $off, $name = "") + public function __construct(string $tpl, int $off, string $name = "") { parent::__construct($tpl, $off); $this->name = $name; -- cgit v1.2.3-54-g00ecf