summaryrefslogtreecommitdiff
path: root/src/ste/TagNode.php
diff options
context:
space:
mode:
authorLaria Carolin Chabowski <laria@laria.me>2020-04-26 16:48:01 +0200
committerLaria Carolin Chabowski <laria@laria.me>2020-04-26 16:48:01 +0200
commitbfd4763b4f831ed9eccbdd4717c98b7d95999d2e (patch)
tree73538562b347386a24e3b81f443a0b61309fe3de /src/ste/TagNode.php
parent2464ac4fa63ccd169f36849a1f7372191066f305 (diff)
downloadste-bfd4763b4f831ed9eccbdd4717c98b7d95999d2e.tar.gz
ste-bfd4763b4f831ed9eccbdd4717c98b7d95999d2e.tar.bz2
ste-bfd4763b4f831ed9eccbdd4717c98b7d95999d2e.zip
Some simple code formatting
- Expand tabs into spaces - Remove trailing whitespace - Get rid of closing `?>` tags
Diffstat (limited to 'src/ste/TagNode.php')
-rw-r--r--src/ste/TagNode.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/ste/TagNode.php b/src/ste/TagNode.php
index 2527b55..8915c59 100644
--- a/src/ste/TagNode.php
+++ b/src/ste/TagNode.php
@@ -3,11 +3,11 @@
namespace kch42\ste;
class TagNode extends ASTNode {
- public $name;
- public $params = array();
- public $sub = array();
- public function __construct($tpl, $off, $name = "") {
- parent::__construct($tpl, $off);
- $this->name = $name;
- }
+ public $name;
+ public $params = array();
+ public $sub = array();
+ public function __construct($tpl, $off, $name = "") {
+ parent::__construct($tpl, $off);
+ $this->name = $name;
+ }
}