diff options
Diffstat (limited to 'src/TokensList.php')
-rw-r--r-- | src/TokensList.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/TokensList.php b/src/TokensList.php index 507d68b..32b4819 100644 --- a/src/TokensList.php +++ b/src/TokensList.php @@ -20,7 +20,7 @@ class TokensList implements \ArrayAccess * * @var array */ - public $tokens = []; + public $tokens = array(); /** * The count of tokens. @@ -42,7 +42,7 @@ class TokensList implements \ArrayAccess * @param array $tokens the initial array of tokens * @param int $count the count of tokens in the initial array */ - public function __construct(array $tokens = [], $count = -1) + public function __construct(array $tokens = array(), $count = -1) { if (! empty($tokens)) { $this->tokens = $tokens; |