summaryrefslogtreecommitdiff
path: root/src/ste/STECore.php
diff options
context:
space:
mode:
authorLaria Carolin Chabowski <laria@laria.me>2020-09-13 21:44:30 +0200
committerLaria Carolin Chabowski <laria@laria.me>2020-09-13 21:44:30 +0200
commit11932a471b4ef10faf76b6fcfe30a35f946eb7ab (patch)
treecde92c5eceef8991033fe7773ab60da51e289af4 /src/ste/STECore.php
parentd7d74d0a714f29515da85078cc826ba49d2913b9 (diff)
downloadste-11932a471b4ef10faf76b6fcfe30a35f946eb7ab.tar.gz
ste-11932a471b4ef10faf76b6fcfe30a35f946eb7ab.tar.bz2
ste-11932a471b4ef10faf76b6fcfe30a35f946eb7ab.zip
Use short array syntax
We can use it now that we switched to PHP 7.3
Diffstat (limited to 'src/ste/STECore.php')
-rw-r--r--src/ste/STECore.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ste/STECore.php b/src/ste/STECore.php
index f00a4f4..9274587 100644
--- a/src/ste/STECore.php
+++ b/src/ste/STECore.php
@@ -63,10 +63,10 @@ class STECore
$this->storage_access = $storage_access;
$this->cur_tpl_dir = "/";
STEStandardLibrary::_register_lib($this);
- $this->blockorder = array();
- $this->blocks = array();
+ $this->blockorder = [];
+ $this->blocks = [];
- $this->vars = array();
+ $this->vars = [];
$this->scope = new Scope();
$this->scope->vars =& $this->vars;
}