Added 'array' to \RTEX\Abstracts > VariableType
This commit is contained in:
parent
fcfa860116
commit
452b923b3f
1 changed files with 5 additions and 5 deletions
|
@ -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
|
|
||||||
];
|
];
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue