Added 'array' to \RTEX\Abstracts > VariableType

This commit is contained in:
Netkas 2022-12-27 02:47:26 -05:00
parent fcfa860116
commit 452b923b3f

View file

@ -2,7 +2,7 @@
namespace RTEX\Abstracts; namespace RTEX\Abstracts;
abstract class VariableTypes abstract class VariableType
{ {
const String = 'string'; const String = 'string';
@ -12,19 +12,19 @@
const Boolean = 'boolean'; const Boolean = 'boolean';
const Array = 'array';
const Null = 'null'; const Null = 'null';
const Instruction = 'instruction'; const Instruction = 'instruction';
const InstructionList = 'i_instruction';
const All = [ const All = [
self::String, self::String,
self::Integer, self::Integer,
self::Float, self::Float,
self::Boolean, self::Boolean,
self::Array,
self::Null, self::Null,
self::Instruction, self::Instruction
self::InstructionList
]; ];
} }