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;
|
||||
|
||||
abstract class VariableTypes
|
||||
abstract class VariableType
|
||||
{
|
||||
const String = 'string';
|
||||
|
||||
|
@ -12,19 +12,19 @@
|
|||
|
||||
const Boolean = 'boolean';
|
||||
|
||||
const Array = 'array';
|
||||
|
||||
const Null = 'null';
|
||||
|
||||
const Instruction = 'instruction';
|
||||
|
||||
const InstructionList = 'i_instruction';
|
||||
|
||||
const All = [
|
||||
self::String,
|
||||
self::Integer,
|
||||
self::Float,
|
||||
self::Boolean,
|
||||
self::Array,
|
||||
self::Null,
|
||||
self::Instruction,
|
||||
self::InstructionList
|
||||
self::Instruction
|
||||
];
|
||||
}
|
Loading…
Add table
Reference in a new issue